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
{{ message }}
This repository was archived by the owner on Nov 24, 2022. It is now read-only.
In reality it shouldn't be a problem because it takes some time to download and import data, but the mocked calls return immediately, allow them to run nearly the same time.
This happens in tests here as well as the auction system CI
It's caused by a race between
txn.Commitat https://github.com/textileio/bidbot/blob/main/service/store/store.go#L372 and the call tos.saveAndTransitionStatusin the fetch worker https://github.com/textileio/bidbot/blob/main/service/store/store.go#L615 which triggered by sending tojobChhttps://github.com/textileio/bidbot/blob/main/service/store/store.go#L536In reality it shouldn't be a problem because it takes some time to download and import data, but the mocked calls return immediately, allow them to run nearly the same time.