dispatcher: Use int32 for atomic operations to prevent crash on ARM 32bit systems (#370)

See https://github.com/golang/go/issues/599
This commit is contained in:
Adrian Gallagher
2019-10-23 11:30:40 +11:00
committed by GitHub
parent ccfcdf26aa
commit 596be31b6a
4 changed files with 13 additions and 13 deletions

View File

@@ -64,5 +64,5 @@ type Settings struct {
// Dispatch system settings
EnableDispatcher bool
DispatchMaxWorkerAmount int64
DispatchMaxWorkerAmount int
}