We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbeaa81 commit 42d120eCopy full SHA for 42d120e
codeflash/api/cfapi.py
@@ -269,6 +269,8 @@ def send_completion_email() -> Response:
269
owner, repo = get_repo_owner_and_name()
270
except Exception as e:
271
sentry_sdk.capture_exception(e)
272
- return {}
+ response = requests.Response()
273
+ response.status_code = 500
274
+ return response
275
payload = {"owner": owner, "repo": repo}
276
return make_cfapi_request(endpoint="/send-completion-email", method="POST", payload=payload)
0 commit comments