chore: remove warn log for slow queue because it is misleading #247
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Removing the slow queue warn log added in #228. We have found this to be very noisy and misleading. Upon further investigation, we found the timer starts at the beginning of the function call and then is designed to wait and loop until there is actual work. On systems that sit idle for a while and then do work, this leads to lots of logs like this:
We should rework the timing to only count when work is actually running. For now we will remove it and revisit updating the timer more accurately later, tracked in this issue: https://github.com/rstudio/package-manager/issues/16800
More discussion about this issue and investigation here: https://github.com/rstudio/package-manager/issues/16794
Ref https://github.com/rstudio/package-manager/issues/16794