Skip to content

Commit

Permalink
select timeout shorter
Browse files Browse the repository at this point in the history
  • Loading branch information
jtwhite79 committed Nov 27, 2024
1 parent 58792a4 commit 9f28f69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/run_managers/yamr/RunManagerPanther.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@ bool RunManagerPanther::listen(pest_utils::thread_flag* terminate/* = nullptr*/)
fd_set read_fds; // temp file descriptor list for select()
socklen_t addr_len;
timeval tv;
tv.tv_sec = 1;
tv.tv_sec = 0.25;
tv.tv_usec = 0;
read_fds = master; // copy it
if (w_select(fdmax+1, &read_fds, NULL, NULL, &tv) == -1)
Expand Down

0 comments on commit 9f28f69

Please sign in to comment.