1.修复读取ts中aac格式数据多次flush问题

2.修复subscribe结束时判断IsClosed调用对象错误
3.增加DefaultYaml功能
This commit is contained in:
dexter
2023-01-03 18:55:32 +08:00
parent fcf4b36c07
commit 5b51e8c494
7 changed files with 27 additions and 17 deletions

View File

@@ -6,7 +6,6 @@ import (
"reflect"
"strings"
"go.uber.org/zap"
"m7s.live/engine/v4/log"
)
@@ -162,11 +161,11 @@ func (config Config) Merge(source Config) {
case Config:
m.Merge(v.(Config))
default:
log.Debug("merge", zap.String("k", k), zap.Any("v", v))
log.Debug("merge", k, v)
config[k] = v
}
} else {
log.Debug("exist", zap.String("k", k))
log.Debug("exist", k)
}
}
}