1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-07-12 23:50:27 +02:00

Delete children when deleting boards and cards (#3943)

* delete and undelete handle children
This commit is contained in:
Doug Lauder
2022-11-08 11:42:01 -05:00
committed by GitHub
parent cf97e300c1
commit 8949c6b13f
13 changed files with 425 additions and 29 deletions

View File

@ -2,7 +2,6 @@ package utils
import (
"context"
"runtime/debug"
"sync/atomic"
"time"
@ -123,7 +122,6 @@ func (cn *CallbackQueue) exec(f CallbackFunc) {
cn.logger.Error("CallbackQueue callback panic",
mlog.String("name", cn.name),
mlog.Any("panic", r),
mlog.String("stack", string(debug.Stack())),
)
}
}()