coding tweaks in preparation for crafting "delete conference" code

This commit is contained in:
2026-02-19 23:24:49 -07:00
parent 831c6c5524
commit d2e6396ca7
8 changed files with 48 additions and 13 deletions
+1 -1
View File
@@ -621,7 +621,7 @@ func contextRecycler(incoming chan *amContext, done chan bool) {
// SetupAmContext starts the recycler for contexts.
func SetupAmContext() func() {
amContextRecycleBin = make(chan *amContext, 16)
amContextRecycleBin = make(chan *amContext, config.GlobalConfig.Tuning.Queues.ContextRecycle)
done := make(chan bool)
go contextRecycler(amContextRecycleBin, done)
return func() {