completed manage conference list

This commit is contained in:
2026-02-20 22:33:27 -07:00
parent 7ae9326292
commit acf65583ca
8 changed files with 205 additions and 6 deletions
+3
View File
@@ -478,10 +478,13 @@ func (t *Topic) Delete(ctx context.Context, u *User, ipaddr string, background *
// Spin off a background task to finish deleting this topic.
myTopicId := t.TopicId
background.Submit(func(ctx context.Context) {
start := time.Now()
err := backgroundPurgeTopic(ctx, myTopicId)
if err != nil {
log.Errorf("backgroundTopicPurge FAILED with %v", err)
}
dur := time.Since(start)
log.Infof("Topic.Delete task completed in %v", dur)
})
return nil