Process all relevant jobs from openQA#170
Conversation
daa9c66 to
956d485
Compare
|
@Mergifyio rebase |
As discussed in slack -> https://suse.slack.com/archives/C02CANHLANP/p1709109430256279 this change forces bot process and sync all results, not only latest. for example: with latest: for r in ret: print(f"{r['id']}: .... {r['result']}") ... 13580193: .... softfailed 13580199: .... softfailed 13618826: .... passed without latest: >>> for r in ret: print(f"{r['id']}: .... {r['result']}") ... 13392313: .... failed 13392314: .... failed 13392315: .... failed 13534621: .... passed 13534659: .... failed 13535630: .... failed 13535631: .... failed 13556841: .... user_cancelled 13574056: .... failed 13574057: .... failed 13574058: .... failed 13580193: .... softfailed 13580199: .... softfailed 13580851: .... softfailed 13601665: .... failed 13602658: .... failed 13604911: .... failed 13606694: .... failed 13618826: .... passed >>>
✅ Branch has been successfully rebased |
Hard to say, short term probably no impact. We already have 2.039.238 jobs in the dashboard database. This will accelerate our need to implement functionality for cleaning up old openQA jobs though. That does not exist yet and we are currently keeping job data indefinitely. |
|
With that, can we remove the "no ready" label? |
Small update on this. We do depend on an Specifically the code here updates the timestamp every time. If an older job ends up getting the newest timestamp, we will run into ordering issues. |
So what's your suggestion. Should this prevent us from accepting this PR? |
This should probably be double checked before the PR is accepted, yes. |
|
@mimi1vx I assume in general the idea is still applicable. Would you like to rebase and state about manual test results or close? |
|
Its problem in discussed in slack valid ? And still it was stopped by @kraih :D |
Sorry, I couldn't parse your sentences. Please rebase this and rephrase the commit or close the pull request. |
As discussed in slack ->
https://suse.slack.com/archives/C02CANHLANP/p1709109430256279
this change forces bot process and sync all results, not only latest.
for example:
with latest:
without latest: