1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-01-24 14:26:58 +02:00

remove the unnecessary App.ResetBootstrapState calls as sqlite connections will be closed anyway with the process termination

This commit is contained in:
Gani Georgiev 2023-12-08 19:23:41 +02:00
parent 4c473385b2
commit d86e20b7f2
2 changed files with 0 additions and 4 deletions

View File

@ -561,8 +561,6 @@ func (app *BaseApp) Restart() error {
terminateErr := app.OnTerminate().Trigger(&TerminateEvent{
App: app,
IsRestart: true,
}, func(e *TerminateEvent) error {
return e.App.ResetBootstrapState()
})
if terminateErr != nil {
return terminateErr

View File

@ -168,8 +168,6 @@ func (pb *PocketBase) Execute() error {
// trigger cleanups
return pb.OnTerminate().Trigger(&core.TerminateEvent{
App: pb,
}, func(e *core.TerminateEvent) error {
return e.App.ResetBootstrapState()
})
}