Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix printout typoes #2428

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion es_relval_log.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def es_parse_jobreport(payload, logFile):
def es_parse_log(logFile):
stamp = "%s-es" % logFile
if exists(stamp):
print("Adready process: ", logFile)
print("Already processed: ", logFile)
return
t = os.path.getmtime(logFile)
timestp = int(t * 1000)
Expand Down
2 changes: 1 addition & 1 deletion generate-class-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ for pkg in $(cat packages.txt | sed 's|.*=||' | sort | uniq) ; do
done
wait

echo "Done runnin edmDumpClassVersion"
echo "Done running edmDumpClassVersion"
echo "Processing logs ..."

echo "<html><head></head><body><pre>" > class_versions.html
Expand Down
2 changes: 1 addition & 1 deletion jenkins/parser/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def trigger_retry_action(


def trigger_nodeoff_action(job_to_retry, build_to_retry, job_url, node_name):
nodeoff_msg = r"'Node\ marked\ as\ offline\ beacuse\ of\ " + job_url + "'"
nodeoff_msg = r"'Node\ marked\ as\ offline\ because\ of\ " + job_url + "'"
take_nodeoff = (
os.environ.get("JENKINS_CLI_CMD") + " offline-node " + node_name + " -m " + nodeoff_msg
)
Expand Down
2 changes: 1 addition & 1 deletion process_pr.py
Original file line number Diff line number Diff line change
Expand Up @@ -2107,7 +2107,7 @@ def process_pr(repo_config, gh, repo, issue, dryRun, cmsbuild_user=None, force=F
if (signatures.get("tests") == "approved") and [c for c in signatures if not c in xcats]:
for cat in [c for c in CATS_TO_APPROVE_ON_TEST if (signatures.get(c) == "pending")]:
signatures[cat] = "approved"
print("Overriding/Approving singatures for %s due to tests-approved" % cat)
print("Overriding/Approving signatures for %s due to tests-approved" % cat)

for cat in signing_categories:
l = cat + "-pending"
Expand Down
2 changes: 1 addition & 1 deletion report-summary-merged-prs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1136,7 +1136,7 @@ def find_general_test_results(
:param magic_command: string with bash command to execute
:param test_field: field to write back the results to
:param results_function: function how to process results
:param proces_result: function to process the result of results_function
:param process_result: function to process the result of results_function
"""

for comp in comparisons:
Expand Down