Skip to content

Commit

Permalink
feat(thesis): WIP thesis
Browse files Browse the repository at this point in the history
  • Loading branch information
BartlomiejRasztabiga committed Dec 30, 2023
1 parent 436200f commit 8b2ad5c
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion build_all.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#!/usr/bin/env sh
(cd ./delivery/ || exit ; sh ./gradlew build)
(cd ./e2e/ || exit ; sh ./gradlew build)
(cd ./gateway/ || exit ; sh ./gradlew build)
(cd ./order/ || exit ; sh ./gradlew build)
(cd ./payment/ || exit ; sh ./gradlew build)
(cd ./query/ || exit ; sh ./gradlew build)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ class OrderLifecycleSaga {
)
)
} catch (e: Exception) {
// ignore
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class RestaurantLifecycleSagaTest {

var payeeId: UUID? = null

testFixture.setCallbackBehavior { commandPayload, commandMetaData ->
testFixture.setCallbackBehavior { commandPayload, _ ->
if (commandPayload is CreatePayeeCommand) {
payeeId = commandPayload.id
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class UserLifecycleSagaTest {

var payerId: UUID? = null

testFixture.setCallbackBehavior { commandPayload, commandMetaData ->
testFixture.setCallbackBehavior { commandPayload, _ ->
if (commandPayload is CreatePayerCommand) {
payerId = commandPayload.id
}
Expand Down

0 comments on commit 8b2ad5c

Please sign in to comment.