Fix config
This commit is contained in:
parent
3289e91786
commit
af46e914bb
3 changed files with 5 additions and 1 deletions
|
@ -32,6 +32,8 @@ services:
|
|||
- RABBITMQ_NODENAME=rabbit@my-rabbit
|
||||
poussetaches:
|
||||
image: "poussetaches:latest"
|
||||
ports:
|
||||
- '7991'
|
||||
environment:
|
||||
- POUSSETACHES_AUTH_KEY=123
|
||||
networks:
|
||||
|
|
|
@ -40,5 +40,7 @@ services:
|
|||
- "${DATA_DIR}/rabbitmq:/var/lib/rabbitmq"
|
||||
poussetaches:
|
||||
image: "poussetaches:latest"
|
||||
ports:
|
||||
- '7991'
|
||||
environment:
|
||||
- POUSSETACHES_AUTH_KEY=123
|
||||
|
|
|
@ -33,7 +33,7 @@ class PousseTaches:
|
|||
)
|
||||
resp.raise_for_status()
|
||||
|
||||
return resp.headers.get("Poussetaches-Task-ID")
|
||||
return resp.headers["Poussetaches-Task-ID"]
|
||||
|
||||
def parse(self, req: flask.Request) -> Task:
|
||||
if req.headers.get("Poussetaches-Auth-Key") != POUSSETACHES_AUTH_KEY:
|
||||
|
|
Loading…
Reference in a new issue