42 lines
636 B
TOML
42 lines
636 B
TOML
|
|
[[worker]]
|
|
[worker.config]
|
|
id = "test"
|
|
enabled = true
|
|
timeout = 10
|
|
retries = 3
|
|
secret = "test-secret"
|
|
|
|
[worker.pypi_source]
|
|
packages = ["arcade-ai"]
|
|
|
|
[worker.local_source]
|
|
packages = ["./missing_toolkit"]
|
|
|
|
[[worker]]
|
|
[worker.config]
|
|
id = "test-2"
|
|
enabled = true
|
|
timeout = 10
|
|
retries = 3
|
|
secret = "test-secret"
|
|
|
|
[worker.pypi_source]
|
|
packages = ["arcade-ai"]
|
|
|
|
[worker.local_source]
|
|
packages = ["./invalid.localfile.worker.toml"]
|
|
|
|
[[worker]]
|
|
[worker.config]
|
|
id = "test-3"
|
|
enabled = true
|
|
timeout = 10
|
|
retries = 3
|
|
secret = "test-secret"
|
|
|
|
[worker.pypi_source]
|
|
packages = ["arcade-ai"]
|
|
|
|
[worker.local_source]
|
|
packages = ["./invalid_toolkit"]
|