File tree 2 files changed +6
-2
lines changed 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 7
7
- Maintain less snapshots
8
8
- No longer crash if stage 1 or 2 migration have been altered
9
9
- Improvements for Address variant
10
+ - Fixes an issue where stopping the docker container results in non graceful shutdown
10
11
11
12
## 13.6.0.4
12
13
- Fixes an issue from ledger where DRep delegations could be removed under some conditions
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