Fix issue where deleting jobs with a shared project would erase all project files

This commit is contained in:
Brett Williams
2023-06-04 12:19:47 -05:00
parent 54ec4e7838
commit 0ba89553ab
2 changed files with 10 additions and 6 deletions

View File

@@ -41,7 +41,7 @@ class RenderServerProxy:
if req.ok and req.status_code == 200:
return req.json()
except json.JSONDecodeError as e:
logger.error(f"JSON decode error: {e}")
logger.debug(f"JSON decode error: {e}")
except requests.ConnectionError as e:
logger.error(f"Connection error: {e}")
except Exception as e: