Skip to content

Commit

Permalink
Forgot to also commit the changed arc_util.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Maiken Pedersen committed Sep 13, 2023
1 parent 88451b1 commit dda0a0e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions lib/galaxy/jobs/runners/util/arc_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,19 @@ def get_client(cluster_url: str, token: str) -> ARCRest_1_1:
return ARCRest.getClient(url=cluster_url, version="1.1", token=token, impls={"1.1": ARCRest_1_1})


class ActivityDescriptionBuilder:
class ARCJobBuilder:
name: str
stdout: str
stderr: str
app: str
cpu_time: str
exe_path: str
memory: str
inputs: List[str] = []
inputs: Dict[str, str] = {}
outputs: List[str] = []
job_files: Dict[str, List[Dict]] = {}
#job_files: Dict[str, List[Dict]] = {}
#job_files: Dict[str, str] = {}
descrstr: str

def to_xml_str(self) -> str:
descr = Element("ActivityDescription")
Expand Down

0 comments on commit dda0a0e

Please sign in to comment.