sequential access to viper config (still broken) + add delayed execution to storage-sharing

This commit is contained in:
A.Unger
2021-03-10 12:26:14 +01:00
parent 0d3350497a
commit 6054e6b4a1
15 changed files with 72 additions and 1 deletions
+8
View File
@@ -0,0 +1,8 @@
package sync
import "sync"
var (
// ParsingViperConfig addresses the fact that config parsing using Viper is not thread safe.
ParsingViperConfig sync.Mutex
)