Skip to content

Commit

Permalink
F
Browse files Browse the repository at this point in the history
  • Loading branch information
fstagni committed Mar 20, 2024
1 parent c302b26 commit 1b3fd58
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/submitAndMatch.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
name: submitAndMatch

on:
push:
branches:
- 'integration'
- 'rel-v8r0'
on: push

jobs:
submitAndMatch:
Expand Down
2 changes: 2 additions & 0 deletions src/DIRAC/WorkloadManagementSystem/Agent/JobAgent.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,10 +209,12 @@ def execute(self):
# Check matcher information returned
matcherParams = ["JDL", "Owner", "Group"]
matcherInfo = jobRequest["Value"]
print(matcherInfo)
jobID = str(matcherInfo["JobID"])

self.jobs[jobID] = {}
self.jobs[jobID]["JobReport"] = JobReport(jobID, f"{self.__class__.__name__}@{self.siteName}")
print(self.jobs)

result = self._checkMatcherInfo(jobID, matcherInfo, matcherParams)
if not result["OK"]:
Expand Down

0 comments on commit 1b3fd58

Please sign in to comment.