-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EDU-2293: updated to rethrow exception in Workflow fail case
- Loading branch information
1 parent
80c4add
commit 6d81a01
Showing
4 changed files
with
35 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
## make -f ../Makefile | ||
## make run -f ../Makefile | ||
## make worker -f ../Makefile | ||
|
||
.PHONY: build notests clean worker run serve servedb stop | ||
|
||
build: | ||
@mvn clean install -Dorg.slf4j.simpleLogger.defaultLogLevel=info 2>/dev/null | ||
|
||
notests: | ||
@mvn clean install -DskipTests -Dorg.slf4j.simpleLogger.defaultLogLevel=info 2>/dev/null | ||
|
||
clean: | ||
@mvn clean -q -Dmaven.logging.level=0 | ||
|
||
worker: | ||
@mvn compile exec:java -Dexec.mainClass="moneytransferapp.MoneyTransferWorker" -Dorg.slf4j.simpleLogger.defaultLogLevel=warn | ||
|
||
run: | ||
@mvn compile exec:java -Dexec.mainClass="moneytransferapp.TransferApp" -Dorg.slf4j.simpleLogger.defaultLogLevel=warn | ||
|
||
serve: | ||
@nohup `command -v temporal` server start-dev --log-level=never & | ||
|
||
servedb: | ||
`command -v temporal` server start-dev --log-level=never --db-filename=/Users/ericasadun/Desktop/temporal.db | ||
|
||
stop: | ||
@pkill temporal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.