Increase thread sleep for better process handling (#2046)

* Increase thread sleep for better process handling
This commit is contained in:
abraunegg 2022-07-18 13:09:41 +10:00 committed by GitHub
parent e84b16d7fc
commit a17a667e44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1533,7 +1533,8 @@ int main(string[] args)
}
}
}
Thread.sleep(dur!"msecs"(500));
// Sleep the monitor thread for 1 second, loop around and pick up any inotify changes
Thread.sleep(dur!"seconds"(1));
}
}
}