Skip to content

Commit

Permalink
Updated libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
dartartem committed Dec 27, 2018
1 parent 168dda6 commit 35a0ed9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 11 deletions.
6 changes: 3 additions & 3 deletions docker-compose-mysql-schema-per-service.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: '3'
services:
zookeeper:
image: eventuateio/eventuateio-local-zookeeper:0.30.0.M7
image: eventuateio/eventuateio-local-zookeeper:0.30.0.M8
ports:
- 2181:2181
- 2888:2888
- 3888:3888
kafka:
image: eventuateio/eventuateio-local-kafka:0.30.0.M7
image: eventuateio/eventuateio-local-kafka:0.30.0.M8
ports:
- 9092:9092
depends_on:
Expand All @@ -25,7 +25,7 @@ services:
- MYSQL_USER=mysqluser
- MYSQL_PASSWORD=mysqlpw
tram-cdc-service:
image: eventuateio/eventuate-tram-cdc-mysql-service:0.20.0.M6
image: eventuateio/eventuate-tram-cdc-mysql-service:0.20.0.M7
ports:
- "8099:8080"
depends_on:
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: '3'
services:
zookeeper:
image: eventuateio/eventuateio-local-zookeeper:0.30.0.M7
image: eventuateio/eventuateio-local-zookeeper:0.30.0.M8
ports:
- 2181:2181
- 2888:2888
- 3888:3888
kafka:
image: eventuateio/eventuateio-local-kafka:0.30.0.M7
image: eventuateio/eventuateio-local-kafka:0.30.0.M8
ports:
- 9092:9092
depends_on:
Expand All @@ -25,7 +25,7 @@ services:
- MYSQL_USER=mysqluser
- MYSQL_PASSWORD=mysqlpw
tram-cdc-service:
image: eventuateio/eventuate-tram-cdc-mysql-service:0.20.0.M6
image: eventuateio/eventuate-tram-cdc-mysql-service:0.20.0.M7
ports:
- "8099:8080"
depends_on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ public <C extends Command, R> R sendAndReceiveCommand(CommandEndpoint<C> command
// TODO verify that replyClass is allowed

String sagaId = idGenerator.genId().asString();
String requestId = idGenerator.genId().asString();

String replyTo = sagaType + "-reply";
sagaCommandProducer.sendCommand(sagaType, sagaId, commandEndpoint.getCommandChannel(), null, requestId, command, replyTo);
sagaCommandProducer.sendCommand(sagaType, sagaId, commandEndpoint.getCommandChannel(), null, command, replyTo);

ContractVerifierMessage response = contractVerifierMessaging.receive(replyTo);

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ springDependencyManagementPluginVersion=1.0.3.RELEASE
# springBootVersion = '1.5.6.RELEASE'

eventuateClientVersion=0.20.1.RELEASE
eventuateLocalVersion=0.30.0.M7
eventuateLocalVersion=0.30.0.M8

eventuateTramVersion=0.20.0.M6
eventuateTramSagasVersion=0.10.0.M1
eventuateTramSagasVersion=0.10.0.M2
eventuateUtilVersion=0.1.0.RELEASE

#dockerComposePluginVersion=0.4.5
Expand Down
2 changes: 1 addition & 1 deletion mysql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM eventuateio/eventuate-tram-sagas-mysql:0.10.0.M1
FROM eventuateio/eventuate-tram-sagas-mysql:0.10.0.M2
COPY eventuate-local-schema-mysql.sql /docker-entrypoint-initdb.d/z-eventuate-local-schema-mysql.sql

0 comments on commit 35a0ed9

Please sign in to comment.