You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Аbstract Nodemon should have an option which can control time span window for service start.
Motivation and Purposes
For now nodemon starts instantly though network may be in inconsistent state which can lead to monitoring false positive alerts and warnings.
Specification
The main idea is to delay service start till, for example, 80% of provided scraping timeout. time.Now() should be rounded up to scraping timeout and then subbed by time.Now(). If the result is lower than, for example 0.8 * scrapingTimeout , then we should delay service start till 0.8 * scrapingTimeout - result.
Backwards Compatibility
Nope, the changing is fully compatible.
Аbstract
Nodemon
should have an option which can control time span window for service start.Motivation and Purposes
For now
nodemon
starts instantly though network may be in inconsistent state which can lead to monitoring false positive alerts and warnings.Specification
The main idea is to delay service start till, for example, 80% of provided scraping timeout.
time.Now()
should be rounded up to scraping timeout and then subbed bytime.Now()
. If the result is lower than, for example 0.8 *scrapingTimeout
, then we should delay service start till 0.8 *scrapingTimeout
- result.Backwards Compatibility
Nope, the changing is fully compatible.
Examples and Implementation
The text was updated successfully, but these errors were encountered: