(temp): migration (disable dual syncer)
Some checks failed
release / docker (push) Has been cancelled

This commit is contained in:
2025-03-24 12:17:26 +03:00
parent ef477c736f
commit 8b7e6ca8bc
2 changed files with 5 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ func main() {
wg.Add(1)
go func() {
defer wg.Done()
syncer.Run()
// syncer.Run()
}()
<-ctx.Done()
@@ -80,7 +80,7 @@ func main() {
wg.Add(1)
go func() {
syncer.Stop()
// syncer.Stop()
defer wg.Done()
}()