aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/app/process.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app/process.go')
-rw-r--r--internal/app/process.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/internal/app/process.go b/internal/app/process.go
index 8e18ae64..a0950c27 100644
--- a/internal/app/process.go
+++ b/internal/app/process.go
@@ -192,12 +192,6 @@ func (ms mainState) beforeExit(isFault bool) {
} else if ms.uintptr&mainNeedsDestroy != 0 {
panic("unreachable")
}
-
- if ms.store != nil {
- if err := ms.store.Close(); err != nil {
- perror(err, "close state store")
- }
- }
}
// fatal calls printMessageError, performs necessary cleanup, followed by a call to [os.Exit](1).