From fead382864f98d021444bdd726cc5660d370ad36 Mon Sep 17 00:00:00 2001 From: tfdeleon <133809940+tfdeleon@users.noreply.github.com> Date: Wed, 14 Jun 2023 21:24:52 -0400 Subject: [PATCH] Bug 1836153 - Changed line 114 in compare_tasks.py (#7710) * Changed line 40 in Usage.jsx: Changed 'Need' to 'need' * bug-1836153 changed comment on line 114 of compare_tasks.py from 'th_instancely' to 'instance' * Fixes pyhton version change, Changes line 114 in misc/compare_tasks.py from 'th_instancely' with 'instance' --- misc/compare_tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/misc/compare_tasks.py b/misc/compare_tasks.py index 973970b0e..73d5cdf4b 100755 --- a/misc/compare_tasks.py +++ b/misc/compare_tasks.py @@ -111,13 +111,13 @@ if __name__ == "__main__": if production_dict: logger.info( - "There are the first 10 production jobs we do not have th_instancely. Follow the link to investigate." + "There are the first 10 production jobs we do not have instance. Follow the link to investigate." ) for job in list(production_dict.values())[0:10]: print_url_to_taskcluster(job["job_guid"]) if th_instance_not_found: - logger.info("Number of jobs not found th_instancely: %s jobs", len(th_instance_not_found)) + logger.info("Number of jobs not found instance: %s jobs", len(th_instance_not_found)) for job in th_instance_not_found: print_url_to_taskcluster(job["job_guid"])