Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
avoid time.Sleep to log analysis timeout status
Previously, to warn the user that the analysis is still running, we used time.Sleep to print how much time is left for the timeout, however, if the analysis has already been completed, we still need to wait for the end of time.Sleep to finish the analysis. This change removes time.Sleep and uses time.Tick to print the message, so, if the analysis is finished before the next retry, we do not lock the analysis with time.Sleep.
- Loading branch information