Change environment variable setup
All checks were successful
/ checks (pull_request) Successful in 15s

This commit is contained in:
Bart van der Braak 2024-11-20 02:29:30 +01:00
parent d6bce1b39d
commit 77ae214d24
23 changed files with 113 additions and 122 deletions

View file

@ -20,7 +20,7 @@ trusted_dev_usernames = [
]
def get_authentication(devops_env_id: str):
def get_authentication(ENVIRONMENT: str):
class LocalEnvAuth(buildbot.plugins.util.CustomAuth):
def check_credentials(self, user, password):
return user.decode() == "admin" and password.decode() == "admin"

View file

@ -27,5 +27,5 @@ def get_worker_password(worker_name: str) -> str:
return "localhost"
def get_worker_names(devops_env_id: str):
def get_worker_names(ENVIRONMENT: str):
return _worker_names