Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 7ff92ce

Browse files
committed
chore: change timeout
1 parent 0dc62ee commit 7ff92ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

engine/services/model_source_service.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@ void ModelSourceService::SyncModelSource() {
430430
constexpr const int kIntervalCheck = 10 * 60;
431431
auto start_time = std::chrono::steady_clock::now();
432432
while (running_) {
433-
std::this_thread::sleep_for(std::chrono::milliseconds(500));
433+
std::this_thread::sleep_for(std::chrono::milliseconds(100));
434434
auto current_time = std::chrono::steady_clock::now();
435435
auto elapsed_time = std::chrono::duration_cast<std::chrono::seconds>(
436436
current_time - start_time)

0 commit comments

Comments
 (0)