We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35434aa commit fa685f1Copy full SHA for fa685f1
lib/environment.cc
@@ -332,6 +332,8 @@ auto Environment::startup(const TimePoint& start_time) -> std::thread {
332
this->start_tag_ = Tag::from_physical_time(start_time);
333
if (this->timeout_ == Duration::max()) {
334
this->timeout_tag_ = Tag::max();
335
+ } else if (this->timeout_ == Duration::zero()) {
336
+ this->timeout_tag_ = this->start_tag_;
337
} else {
338
this->timeout_tag_ = this->start_tag_.delay(this->timeout_);
339
}
0 commit comments