Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yzang2019 committed Aug 10, 2024
1 parent b8ca3d5 commit 6e0b75c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tools/cmd/seidb/operations/replay_changelog.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ func executeReplayChangelog(cmd *cobra.Command, _ []string) {
}

// close the database
ssStore.Close()
if ssStore != nil {
ssStore.Close()
}

}

Expand Down

0 comments on commit 6e0b75c

Please sign in to comment.