You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go Routine 13 is reading from the config with GetBool()
Go Routine 15 is writing to the config with AddKnownKey()
Okay there is a race condition here:
run is the main function cmd.go method that starts the server as part of that there is an init for the manager.
The init call can get a resetChan which is what the test is using so reset to mock a config change
But as part of the init call we are initializing some HTTPServer using FireFly Common
FireFly Common uses viper to manage config
Viper has a mutex lock on the map when reading/writing config, the issue is that the context.Context is not propagated to the GetBool() function. That call is stuck on the mutex but the context has been cancelled as we are reinitializing FireFly.
At that point we reload the config, which means adding AddKnownKey and we are reading/write to the same map
There is no thread-safe Viper Set method by the sounds of it
The text was updated successfully, but these errors were encountered:
What happened?
Test
TestExecOkRestartThenExit
failed as part of https://github.com/hyperledger/firefly/actions/runs/14037665734/job/39299605862?pr=1669Diagnosis
From what I can see is at the same time:
GetBool()
AddKnownKey()
Okay there is a race condition here:
run
is the main functioncmd.go
method that starts the server as part of that there is aninit
for the manager.init
call can get aresetChan
which is what the test is using so reset to mock a config changeinit
call we are initializing some HTTPServer using FireFly Commoncontext.Context
is not propagated to theGetBool()
function. That call is stuck on the mutex but the context has been cancelled as we are reinitializing FireFly.AddKnownKey
and we are reading/write to the same mapthread-safe
Viper Set method by the sounds of itThe text was updated successfully, but these errors were encountered: