Merge pull request #944 from riscv/remove_extra_kept_alive

Remove an extra call to kept_alive()
This commit is contained in:
Tim Newsome 2023-10-26 09:18:47 -07:00 committed by GitHub
commit b48636158a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -481,7 +481,6 @@ int server_loop(struct command_context *command_context)
timeout_ms = polling_period;
tv.tv_usec = timeout_ms * 1000;
/* Only while we're sleeping we'll let others run */
kept_alive();
retval = socket_select(fd_max + 1, &read_fds, NULL, NULL, &tv);
}