Config changed for api url

This commit is contained in:
2020-09-25 13:02:44 +02:00
parent 005372497c
commit 80a7557467
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ class SoundSender(AbcSender):
"application/json")
}
r = requests.post(config.INPUT_SVC_URL, files=files)
r = requests.post(config.API_URL + "/sample", files=files)
logging.info("Content: ", r.content)
logging.info("Headers:", r.headers)
r.raise_for_status()