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
When running the TestRelayMessageTransmission test, we encounter the following panic related to the Go sync.WaitGroup:
This issue occurs during the execution of the GetNumConnectedRelayPeers API. The error appears right after successfully connecting nodes and attempting to subscribe to the relay topic.
Steps to Reproduce:
Run the following test case:
go test -v -run ^TestRelayMessageTransmission$ ./testlibs/waku-go-tests
Expected Behavior:
The test should complete successfully without any panic.
The GetNumConnectedRelayPeers API should return the correct number of connected peers without triggering WaitGroup errors.
Actual Behavior:
The test panics with the following error:
panic: sync: negative WaitGroup counter
The text was updated successfully, but these errors were encountered:
Description:
When running the
TestRelayMessageTransmission
test, we encounter the following panic related to the Gosync.WaitGroup
:This issue occurs during the execution of the
GetNumConnectedRelayPeers
API. The error appears right after successfully connecting nodes and attempting to subscribe to the relay topic.Steps to Reproduce:
go test -v -run ^TestRelayMessageTransmission$ ./testlibs/waku-go-tests
Expected Behavior:
The test should complete successfully without any panic.
The GetNumConnectedRelayPeers API should return the correct number of connected peers without triggering WaitGroup errors.
Actual Behavior:
The test panics with the following error:
The text was updated successfully, but these errors were encountered: