Compare commits

..

No commits in common. "7468b1b3915ea387c5db0bda51d1c2183f401aff" and "6736680131a35e520459b736ce075a0f62784b35" have entirely different histories.

3 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,5 @@
[tool.bumpversion] [tool.bumpversion]
current_version = "1.3.38" current_version = "1.3.37"
commit = true commit = true
tag = true tag = true
tag_name = "{new_version}" tag_name = "{new_version}"

View File

@ -1 +1 @@
1.3.38 1.3.37

3
app.py
View File

@ -155,8 +155,7 @@ def send_test_notification_proxy():
try: try:
response = requests.post( response = requests.post(
backend_url, backend_url,
auth=requests.auth.HTTPBasicAuth(username, password), auth=requests.auth.HTTPBasicAuth(username, password)
json={"message": "Ktv Test"}
) )
return Response(response.content, status=response.status_code, mimetype=response.headers['Content-Type']) return Response(response.content, status=response.status_code, mimetype=response.headers['Content-Type'])
except requests.exceptions.RequestException as e: except requests.exceptions.RequestException as e: