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
It is possible for the test bot to generate multiple User Test Result comments if multiple events are received when a PR/issue is created, before the first User Test Result comment is created.
There is a known race condition here -- you see the user test results showing up twice -- because of the async nature of the bot, it can end up creating two user test result comments when multiple events are received. Workaround is to delete one of them -- doesn't matter which one.
The proper fix is to serialize the responses from the test bot better, which we could do queuing actions, and signaling completion of each test bot action before starting the next one.
Or at least serialize actions for a given PR/issue. But that's a little more plumbing to get right.
The text was updated successfully, but these errors were encountered:
It is possible for the test bot to generate multiple User Test Result comments if multiple events are received when a PR/issue is created, before the first User Test Result comment is created.
There is a known race condition here -- you see the user test results showing up twice -- because of the async nature of the bot, it can end up creating two user test result comments when multiple events are received. Workaround is to delete one of them -- doesn't matter which one.
The proper fix is to serialize the responses from the test bot better, which we could do queuing actions, and signaling completion of each test bot action before starting the next one.
Or at least serialize actions for a given PR/issue. But that's a little more plumbing to get right.
The text was updated successfully, but these errors were encountered: