Skip to content

Commit

Permalink
Revert "[23.1] Enable job resubmissions in k8s runner"
Browse files Browse the repository at this point in the history
  • Loading branch information
nuwang authored Jan 18, 2024
1 parent b4b1def commit 61f3db2
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 199 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/authnz/custos_authnz.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def callback(self, state_token, authz_code, trans, login_redirect_url):
if trans.app.config.fixed_delegated_auth:
user = existing_user
else:
message = f"There already exists a user with email {email}. To associate this external login, you must first be logged in as that existing account."
message = f"There already exists a user with email {email}. To associate this external login, you must first be logged in as that existing account."
log.info(message)
login_redirect_url = (
f"{login_redirect_url}login/start"
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def check_total_perspective_vortex(self):
def check_pbs_python(self):
return "galaxy.jobs.runners.pbs:PBSJobRunner" in self.job_runners

def check_pykube_ng(self):
def check_pykube(self):
return "galaxy.jobs.runners.kubernetes:KubernetesJobRunner" in self.job_runners or which("kubectl")

def check_chronos_python(self):
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/conditional-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ custos-sdk
chronos-python==1.2.1

# Kubernetes job runner
pykube-ng==21.3.0
pykube==0.15.0

# Synnefo / Pithos+ object store client
kamaki
Expand Down
Loading

0 comments on commit 61f3db2

Please sign in to comment.