Lowered warning tresholds
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-07-26 17:07:55 +02:00
parent 67c5d723ca
commit 414330b3d5
2 changed files with 5 additions and 5 deletions

View File

@@ -100,7 +100,7 @@ class SampleResource(Resource):
)
upload_time = time.time() - upload_started
if upload_time > 0.9:
if upload_time > 0.8:
current_app.logger.warning(f"Uploading to storage-service took {upload_time:5} sec")
if r.status_code not in [200, 201]: