Skip to content

Commit

Permalink
fix typo in args
Browse files Browse the repository at this point in the history
  • Loading branch information
shubham-html-css-js committed Jan 23, 2024
1 parent d79b518 commit bd4d9ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions core/opl/shovel.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def upload(self):
verify=False,
)
test_id = json.loads(response.text)["id"]
filter_data = {f"{self.args.test_matcher}": f"{test_matcher}"}
filter_data = {f"{self.args.test_job_matcher}": f"{test_matcher}"}
response = requests.get(
f"{self.args.horreum_host}/api/dataset/list/{test_id}",
headers=headers,
Expand All @@ -197,7 +197,7 @@ def upload(self):
datasets = response.json().get("datasets", [])
if len(datasets) > 0:
raise Exception(
f"Test result {self.args.test_matcher}={test_matcher} found in Horreum {datasets}, skipping upload"
f"Test result {self.args.test_job_matcher}={test_matcher} found in Horreum {datasets}, skipping upload"
)
logging.info("INFO: Uploading to Horreum ... ")
params = {
Expand Down
4 changes: 2 additions & 2 deletions opl/shovel.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def upload(self):
verify=False,
)
test_id = json.loads(response.text)["id"]
filter_data = {f"{self.args.test_matcher}": f"{test_matcher}"}
filter_data = {f"{self.args.test_job_matcher}": f"{test_matcher}"}
response = requests.get(
f"{self.args.horreum_host}/api/dataset/list/{test_id}",
headers=headers,
Expand All @@ -197,7 +197,7 @@ def upload(self):
datasets = response.json().get("datasets", [])
if len(datasets) > 0:
raise Exception(
f"Test result {self.args.test_matcher}={test_matcher} found in Horreum {datasets}, skipping upload"
f"Test result {self.args.test_job_matcher}={test_matcher} found in Horreum {datasets}, skipping upload"
)
logging.info("INFO: Uploading to Horreum ... ")
params = {
Expand Down

0 comments on commit bd4d9ca

Please sign in to comment.