Skip to content

Commit

Permalink
Fixed bugin prefix process.
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardofroes committed Mar 3, 2022
1 parent 04bb3e5 commit 37b26f4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# CTM

Cognitive System Toolkit for Microservice.
Cognitive System Toolkit for Microservices.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group 'com.github.CST-Group'
version '0.1.3'
version '0.1.4'

sourceCompatibility = 1.8
targetCompatibility = 1.8
Expand Down Expand Up @@ -59,7 +59,7 @@ publishing {
gpr(MavenPublication) {
groupId = 'com.github.CST-Group'
artifactId = 'ctm'
version = '0.1.3'
version = '0.1.4'

from(components.java)
}
Expand Down
5 changes: 5 additions & 0 deletions src/main/java/br/unicamp/ctm/codelet/CodeletGRPCServer.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package br.unicamp.ctm.codelet;

public class CodeletGRPCServer {

}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static List<TopicConfig> generateTopicConfigsPrefix(String brokers, Strin
}

return foundTopics.stream().map(topic -> new
TopicConfig(topic, KDistributedMemoryBehavior.PULLED, className)
TopicConfig(topic, brokers, KDistributedMemoryBehavior.PULLED, className)
).collect(Collectors.toList());
}

Expand Down

0 comments on commit 37b26f4

Please sign in to comment.