To secure the previously-open-to-anyone worker registration on the Flamenco Manager, we now have to send a JWT token that was signed by a pre-shared secret. To enable this behaviour, set `worker_registration_secret` both in the Worker and the Manager configuration files to the same string.
24 lines
459 B
TOML
24 lines
459 B
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[packages]
|
|
attrs = "*"
|
|
requests = "*"
|
|
psutil = "*"
|
|
pyjwt = "*"
|
|
|
|
[dev-packages]
|
|
pytest = "<4" # pytest-cov uses deprecated function (removed in pytest 4) when using --no-cov
|
|
pytest-cov = "*"
|
|
wheel = "*"
|
|
pyinstaller = "*"
|
|
ipython = "*"
|
|
mypy = "*"
|
|
flamenco-worker = {editable = true,path = "."}
|
|
colorama = {version = "*",sys_platform = "== 'win32'"}
|
|
|
|
[requires]
|
|
python_version = "3.7"
|