Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
transformers
Commits
435abb22
Unverified
Commit
435abb22
authored
Apr 21, 2023
by
Yih-Dar
Committed by
GitHub
Apr 21, 2023
Browse files
Fix counting in Slack report for some jobs (#22913)
fix Co-authored-by:
ydshieh
<
ydshieh@users.noreply.github.com
>
parent
aab14120
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
utils/notification_service.py
utils/notification_service.py
+1
-1
No files found.
utils/notification_service.py
View file @
435abb22
...
@@ -655,7 +655,7 @@ class Message:
...
@@ -655,7 +655,7 @@ class Message:
job_result
,
job_result
,
failures
,
failures
,
device
,
device
,
text
=
f
"
Number of failures:
{
sum
(
job_result
[
'
failed
'
].
values
())
}
"
,
text
=
f
'
Number of failures:
{
job_result
[
"
failed
"
][
device
]
}
'
,
)
)
print
(
"Sending the following reply"
)
print
(
"Sending the following reply"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment