1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-12 16:56:15 +01:00

Don't retry on 400 HTTP status code in core.server_diff()

This commit is contained in:
Daniel Mach 2023-04-28 14:54:18 +02:00
parent b0629f6b90
commit 80fc2bf7cb

View File

@ -5329,7 +5329,7 @@ def server_diff(
query["file"] = files
u = makeurl(apiurl, ['source', new_project, new_package], query=query)
f = http_POST(u)
f = http_POST(u, retry_on_400=False)
if onlyissues and not xml:
del_issue_list = []
add_issue_list = []