File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 77- Maintain less snapshots
88- No longer crash if stage 1 or 2 migration have been altered
99- Improvements for Address variant
10+ - Fixes an issue where stopping the docker container results in non graceful shutdown
1011
1112## 13.6.0.4
1213- Fixes an issue from ledger where DRep delegations could be removed under some conditions
Original file line number Diff line number Diff line change 2424
2525 baseImage = dockerTools . buildImage {
2626 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+ } ;
2831
2932 copyToRoot = buildEnv {
3033 name = "base-image-env" ;
9396 db-sync = pkgs . writeScriptBin "cardano-db-sync-${ service . cluster } " ''
9497 #!${ runtimeShell }
9598 set -euo pipefail
96- ${ service . script } $@
99+ exec ${ service . script } $@
97100 '' // {
98101 passthru = { inherit service ; } ;
99102 } ;
You can’t perform that action at this time.
0 commit comments