Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
9c8672df
Commit
9c8672df
authored
Nov 08, 2001
by
Leigh B. Stoller
Browse files
Send email every 10 failed attempts instead of 5, and do not send
email on the first failed attempt!
parent
496373e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
tbsetup/batch_daemon.in
View file @
9c8672df
...
...
@@ -369,7 +369,7 @@ sub startexp($)
"
where eid='
$eid
' and pid='
$pid
'
");
if
(
$exit_status
==
$TOOFEWNODES
)
{
if
((
$attempts
%
5
)
==
0
)
{
if
(
$attempts
&&
((
$attempts
%
10
)
==
0
)
)
{
$attempts
++
;
my
$msg
=
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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