Skip to content

Commit 4fb2243

Browse files
author
RolefH
committed
Merge branch 'develop' of github.com:IBMStreams/streamsx.messagehub into develop
2 parents e09ed37 + b50046b commit 4fb2243

File tree

17 files changed

+24
-164
lines changed

17 files changed

+24
-164
lines changed

samples/AppConfigSample/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/.apt_generated/
33
/output/
44
/.toolkitList
5+
toolkit.xml

samples/AppConfigSample/com.ibm.streamsx.messagehub.sample/AppConfigSample.spl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use com.ibm.streamsx.messagehub::MessageHubProducer ;
44
use com.ibm.streamsx.messagehub::MessageHubConsumer ;
55
use com.ibm.streamsx.messagehub::MessageType;
66

7-
composite AppConfigSample
7+
public composite AppConfigSample
88
{
99
graph
1010
(stream<MessageType.StringMessage> Beacon_1_out0) as Beacon_1 = Beacon()

samples/AppConfigSample/toolkit.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

samples/ConsumerGroupInputPortSample/com.ibm.streamsx.messagehub.sample/KafkaConsumerGroupInputPortSample.spl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace com.ibm.streamsx.messagehub.sample ;
22

33
use com.ibm.streamsx.messagehub::* ;
44

5-
composite ConsumerGroupInputPortSample {
5+
public composite ConsumerGroupInputPortSample {
66

77
graph
88
// ================ producers that continuously populate the topics t1 and t2

samples/ConsumerGroupWithConsistentRegion/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/.apt_generated/
33
/output/
44
/.toolkitList
5+
toolkit.xml

samples/ConsumerGroupWithConsistentRegion/com.ibm.streamsx.messagehub.sample/ConsumerGroupWithConsistentRegion.spl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use com.ibm.streamsx.messagehub::MessageHubProducer ;
77
* This sample is a Consistent Region sample that demonstrates the use of multiple consumers in a consumer group.
88
* You can kill any of the PEs in the graph that produces Kafka messages. The result file should always be the same.
99
*/
10-
composite ConsumerGroupWithConsistentRegion {
10+
public composite ConsumerGroupWithConsistentRegion {
1111
param
1212
// settings for the consumer group
1313
expression <int32> $nConsumers: 3; // number of consumers in the consumer group; can be different than number of partitions
@@ -75,6 +75,6 @@ composite ConsumerGroupWithConsistentRegion {
7575
// keyAttribute: key; // 'key' is default value
7676
// messageAttribute: message; // 'message' is default value
7777
partitionAttribute: targetPartition;
78-
messageHubCredentialsFile: "etc/eventstreams.json";
78+
credentialsFile: "etc/eventstreams.json";
7979
}
8080
}

samples/ConsumerGroupWithConsistentRegion/toolkit.xml

Lines changed: 0 additions & 35 deletions
This file was deleted.

samples/ConsumerInputPortSample/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/.apt_generated/
33
/output/
44
/.toolkitList
5-
5+
toolkit.xml

samples/ConsumerInputPortSample/com.ibm.streamsx.messagehub.sample/ConsumerInputPortSample.spl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ namespace com.ibm.streamsx.messagehub.sample ;
22

33
use com.ibm.streamsx.messagehub::* ;
44

5-
composite ConsumerInputPortSample
5+
public composite ConsumerInputPortSample
66
{
77
graph
88
(stream<rstring jsonString> TopicPartitionUpdateStream) as TopicPartitionUpdater = Custom() {

samples/ConsumerInputPortSample/toolkit.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)