File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Revision history for cardano-db-sync
2
2
3
+ - Fixes an issue where stopping the docker container results in non graceful shutdown
4
+
3
5
## 13.6.0.4
4
6
- Fixes an issue from ledger where DRep delegations could be removed under some conditions
5
7
- Fix an issue with migration from 13.5.x when consumed_tx_out config is enabled
Original file line number Diff line number Diff line change 24
24
25
25
baseImage = dockerTools . buildImage {
26
26
name = "cardano-db-sync-base-env" ;
27
- config . Env = [ "NIX_SSL_CERT_FILE=${ cacert } /etc/ssl/certs/ca-bundle.crt" ] ;
27
+ config = {
28
+ Env = [ "NIX_SSL_CERT_FILE=${ cacert } /etc/ssl/certs/ca-bundle.crt" ] ;
29
+ StopSignal = "SIGINT" ;
30
+ } ;
28
31
29
32
copyToRoot = buildEnv {
30
33
name = "base-image-env" ;
93
96
db-sync = pkgs . writeScriptBin "cardano-db-sync-${ service . cluster } " ''
94
97
#!${ runtimeShell }
95
98
set -euo pipefail
96
- ${ service . script } $@
99
+ exec ${ service . script } $@
97
100
'' // {
98
101
passthru = { inherit service ; } ;
99
102
} ;
You can’t perform that action at this time.
0 commit comments