Skip to content

Commit

Permalink
aslp-cpp: one dot per second.
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinafyi committed Feb 13, 2024
1 parent 2cd646e commit dc486c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aslp-cpp/source/aslp-cpp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ void aslp_connection::wait_active()
std::cout << "Waiting for server to start.";
while (req.error() != httplib::Error::Success) {
std::cout << "." << std::flush;
std::this_thread::sleep_for(std::chrono::milliseconds(100));
std::this_thread::sleep_for(std::chrono::milliseconds(1000));
req = client->Get("/");
}
std::cout << "\n";
Expand Down

0 comments on commit dc486c2

Please sign in to comment.