Skip to content
Snippets Groups Projects
Commit 046699a1 authored by vito.he's avatar vito.he
Browse files

Fix:bug in failbackClusterInvoker

parent 6bdab5d6
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,9 @@ func (invoker *failbackClusterInvoker) Destroy() {
invoker.baseClusterInvoker.Destroy()
// stop ticker
invoker.ticker.Stop()
if invoker.ticker != nil {
invoker.ticker.Stop()
}
_ = invoker.taskList.Dispose()
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment