mirror of
https://git.sr.ht/~tsileo/microblog.pub
synced 2024-11-15 03:04:28 +00:00
Fix config
This commit is contained in:
parent
066309a0c8
commit
2ed79e9e27
3 changed files with 5 additions and 1 deletions
|
@ -32,6 +32,8 @@ services:
|
||||||
- RABBITMQ_NODENAME=rabbit@my-rabbit
|
- RABBITMQ_NODENAME=rabbit@my-rabbit
|
||||||
poussetaches:
|
poussetaches:
|
||||||
image: "poussetaches:latest"
|
image: "poussetaches:latest"
|
||||||
|
ports:
|
||||||
|
- '7991'
|
||||||
environment:
|
environment:
|
||||||
- POUSSETACHES_AUTH_KEY=123
|
- POUSSETACHES_AUTH_KEY=123
|
||||||
networks:
|
networks:
|
||||||
|
|
|
@ -40,5 +40,7 @@ services:
|
||||||
- "${DATA_DIR}/rabbitmq:/var/lib/rabbitmq"
|
- "${DATA_DIR}/rabbitmq:/var/lib/rabbitmq"
|
||||||
poussetaches:
|
poussetaches:
|
||||||
image: "poussetaches:latest"
|
image: "poussetaches:latest"
|
||||||
|
ports:
|
||||||
|
- '7991'
|
||||||
environment:
|
environment:
|
||||||
- POUSSETACHES_AUTH_KEY=123
|
- POUSSETACHES_AUTH_KEY=123
|
||||||
|
|
|
@ -33,7 +33,7 @@ class PousseTaches:
|
||||||
)
|
)
|
||||||
resp.raise_for_status()
|
resp.raise_for_status()
|
||||||
|
|
||||||
return resp.headers.get("Poussetaches-Task-ID")
|
return resp.headers["Poussetaches-Task-ID"]
|
||||||
|
|
||||||
def parse(self, req: flask.Request) -> Task:
|
def parse(self, req: flask.Request) -> Task:
|
||||||
if req.headers.get("Poussetaches-Auth-Key") != POUSSETACHES_AUTH_KEY:
|
if req.headers.get("Poussetaches-Auth-Key") != POUSSETACHES_AUTH_KEY:
|
||||||
|
|
Loading…
Reference in a new issue