fix: adjust delay value in retry logic to 500ms for improved responsiveness

This commit is contained in:
retoor 2024-12-01 03:58:35 +00:00
parent ee7e40bbca
commit 00eac90468
2 changed files with 1 additions and 1 deletions

BIN
dot

Binary file not shown.

2
dot.c
View File

@ -37,7 +37,7 @@ int main(int argc, char *argv[]) {
print_load();
printf(".%s", "\n");
fflush(stdout);
usleep(30 * 1000 * 1000);
usleep(59 * 1000 * 1000);
}
return 0;
}