forked from serverpod/serverpod
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Catch database exceptions at the end of transactions. (serverpod…
- Loading branch information
1 parent
9c079a7
commit 0880992
Showing
12 changed files
with
364 additions
and
250 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Duplicate of production.yaml | ||
# The test tools use test by default, but the other integration tests use production as run mode | ||
apiServer: | ||
port: 8080 | ||
publicHost: serverpod_test_server | ||
publicPort: 8080 | ||
publicScheme: http | ||
|
||
insightsServer: | ||
port: 8081 | ||
publicHost: serverpod_test_server | ||
publicPort: 8081 | ||
publicScheme: http | ||
|
||
webServer: | ||
port: 8082 | ||
publicHost: serverpod_test_server | ||
publicPort: 8082 | ||
publicScheme: http | ||
|
||
database: | ||
host: postgres | ||
port: 5432 | ||
name: serverpod_test | ||
user: postgres | ||
|
||
redis: | ||
enabled: true | ||
host: redis | ||
port: 6379 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -305,6 +305,5 @@ void main() { | |
}); | ||
}); | ||
}, | ||
runMode: ServerpodRunMode.production, | ||
); | ||
} |
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.