diff --git a/flat-manager-client b/flat-manager-client index 530cfe4..628d775 100755 --- a/flat-manager-client +++ b/flat-manager-client @@ -226,6 +226,8 @@ async def _missing_chunk(session, build_url, chunk, headers): resp = await session.get(build_url + "/missing_objects", data=data, headers=headers) async with resp: + if resp.status >= 500: + raise ServerApiError(resp, await resp.text()) if resp.status != 200: raise ApiError(resp, await resp.text())