commit: 66f6d5bcfb56c0796fb72a7e130f234d25229ee0
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 9 09:10:44 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec 9 09:10:44 2025 +0000
URL: https://gitweb.gentoo.org/proj/steve.git/commit/?id=66f6d5bc
Reduce load timeout to 0.5 s
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
steve.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/steve.cxx b/steve.cxx
index 9d98dd0..0a0d6dd 100644
--- a/steve.cxx
+++ b/steve.cxx
@@ -184,7 +184,7 @@ static steve_token_availability
steve_can_give_token(steve_state *state, uint64_
/* trigger a recheck if we don't have one now */
assert(!state->recheck_triggered);
/* TODO: make this configurable? */
- struct timeval tv = { 3, 0 };
+ struct timeval tv = { 0, 500000 };
if (evtimer_add(state->recheck_event.get(), &tv) == -1)
std::print(stderr, "failed to enable recheck
timer\n");
else