We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ced5888 commit c0722ffCopy full SHA for c0722ff
src/argowrapper/routes/routes.py
@@ -323,11 +323,13 @@ def get_workflows(
323
324
try:
325
if team_projects and len(team_projects) > 0:
326
+ logger.info("Doing team workflow get")
327
return argo_engine.get_workflows_for_team_projects_and_user(
328
team_projects=team_projects,
329
auth_header=request.headers.get("Authorization"),
330
)
331
else:
332
+ logger.info("Doing regular workflow get")
333
# no team_projects, so fall back to querying the workflows that belong just to the user (no team project):
334
return argo_engine.get_workflows_for_user(
335
request.headers.get("Authorization")
0 commit comments