File size: 639 Bytes
1c1e321
 
 
d360329
5ab1531
d360329
e32956e
 
1c1e321
 
 
024393e
dc4b7b9
1c1e321
 
024393e
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from os import environ
import ssl

task_serializer = "pickle"
result_serializer = "json"
event_serializer = "json"
accept_content = ["application/json", "application/x-python-serialize"]
result_accept_content = ["application/json", "application/x-python-serialize"]
timezone = "Europe/Oslo"
enable_utc = True

broker_url = f"amqps://llmgzyix:WZZdL_6mmwvoawt58_gYYJV4veF8dOZm@beaver.rmq.cloudamqp.com/llmgzyix"


# SSL/TLS and SNI configuration
# broker_use_ssl = {
#     "ssl_cert_reqs": ssl.CERT_NONE,
#     "ssl_match_hostname": False,
#     "ssl_check_hostname": False,
#     "ssl_sni": "master.cache--j5zxzwppzvjs.addon.code.run",
# }