mirror of
https://github.com/portainer/portainer.git
synced 2025-07-24 15:59:41 +02:00
close db before restore. fix log (#10826)
This commit is contained in:
parent
e4d71d858d
commit
0b9407f0a6
2 changed files with 5 additions and 2 deletions
|
@ -144,6 +144,8 @@ func (connection *DbConnection) Open() error {
|
|||
// Close closes the BoltDB database.
|
||||
// Safe to being called multiple times.
|
||||
func (connection *DbConnection) Close() error {
|
||||
log.Info().Msg("closing PortainerDB")
|
||||
|
||||
if connection.DB != nil {
|
||||
return connection.DB.Close()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue