PollingInterval during sleep? #150
Unanswered
junkyardhokie
asked this question in
Q&A
Replies: 1 comment 3 replies
-
The polling interval does not look at system time. It basically starts a timer and runs the sync job again when the timer reaches a specified length of time. The timer will only be active/incrementing so long as the process is running. I'm not sure how aggressive a laptop sleep cycle is in terms of suspending active processes when it sleeps. So long as the docker container (and therefore the p2g process) is still running, the timer will countdown. But if the container is truly suspended, then the countdown time will be suspended as well. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Does the PollingInterval take into account current system time? I'm wondering how the countdown works when Docker is running on a laptop that is closed (i.e., sleeping). Does the countdown timer only increment while the laptop is active? Or does it update based on current time and compare it start time?
Beta Was this translation helpful? Give feedback.
All reactions