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]
current_version = "1.3.38"
current_version = "1.3.37"
commit = true
tag = true
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:
response = requests.post(
backend_url,
auth=requests.auth.HTTPBasicAuth(username, password),
json={"message": "Ktv Test"}
auth=requests.auth.HTTPBasicAuth(username, password)
)
return Response(response.content, status=response.status_code, mimetype=response.headers['Content-Type'])
except requests.exceptions.RequestException as e: