-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update go mod for flow * update queries for flow state and flow rerun * Fixed go mod file * Removed vendor folder * add queries for flow rerun count * Updated go mod * Fixed error * add vendor to .gitignore * add config.json to .gitignore * add config.json to .gitignore * add flow rerun count and flow input * Updated go mod * Added support for existing tables Dont kill the service immediately but keep running * Added checks for database connected * Fixed error * Fixed max connection issue --------- Co-authored-by: Abhijit Wakchaure <[email protected]>
- Loading branch information
1 parent
fd4768a
commit 494fcca
Showing
9 changed files
with
325 additions
and
87 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 |
---|---|---|
|
@@ -47,3 +47,5 @@ tags | |
.build-cache | ||
submodules/flogo-cicd/.build-cache | ||
./Dockerfile | ||
vendor/ | ||
flow-state/config.json |
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 |
---|---|---|
@@ -1,12 +1,20 @@ | ||
module github.com/project-flogo/services/flow-state | ||
|
||
go 1.16 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/gorilla/websocket v1.4.2 | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/julienschmidt/httprouter v1.3.0 | ||
github.com/lib/pq v1.10.3 | ||
github.com/project-flogo/core v1.6.0 | ||
github.com/project-flogo/flow v1.6.0 | ||
github.com/rs/cors v1.8.0 | ||
github.com/lib/pq v1.10.7 | ||
github.com/project-flogo/core v1.6.4 | ||
github.com/project-flogo/flow v1.6.5-0.20230324065406-53d6cf9cc418 | ||
github.com/rs/cors v1.8.3 | ||
) | ||
|
||
require ( | ||
github.com/araddon/dateparse v0.0.0-20190622164848-0fb0a474d195 // indirect | ||
github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect | ||
go.uber.org/atomic v1.6.0 // indirect | ||
go.uber.org/multierr v1.5.0 // indirect | ||
go.uber.org/zap v1.16.0 // indirect | ||
) |
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
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
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
Oops, something went wrong.