rebase: make use of v0.10.0 of csi-lib-utils

Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
This commit is contained in:
Humble Chirammal
2021-08-17 20:40:24 +05:30
committed by mergify[bot]
parent edf511a833
commit e65fbe9862
4 changed files with 6 additions and 6 deletions

View File

@ -84,7 +84,8 @@ func ExitOnConnectionLoss() func() bool {
if err := ioutil.WriteFile(terminationLogPath, []byte(terminationMsg), 0644); err != nil {
klog.Errorf("%s: %s", terminationLogPath, err)
}
klog.Fatalf(terminationMsg)
klog.Exit(terminationMsg)
// Not reached.
return false
}
}