Skip to content
Snippets Groups Projects
Commit e683a285 authored by Moe Jette's avatar Moe Jette
Browse files

increase possible retry counts on connect call

parent e69cc078
No related branches found
No related tags found
No related merge requests found
...@@ -1188,7 +1188,7 @@ slurm_fd slurm_open_controller_conn(slurm_addr *addr) ...@@ -1188,7 +1188,7 @@ slurm_fd slurm_open_controller_conn(slurm_addr *addr)
if (slurm_api_set_default_config() < 0) if (slurm_api_set_default_config() < 0)
return SLURM_FAILURE; return SLURM_FAILURE;
for (retry=0; retry<2; retry++) { for (retry=0; retry<4; retry++) {
if (retry) if (retry)
sleep(1); sleep(1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment