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
vdelendik
changed the title
kepp only message about upgrading hardware if retry_interval >= 1000ms
keep only message about upgrading hardware if retry_interval >= 1000ms
Aug 17, 2023
@vdelendik there are no CRITICAL level (error is the max log level). Also retry interval hardcoded now:
private long getRetryInterval(long timeout) {
long retryInterval = RETRY_TIME; // RETRY_TIME is the retry interval from configuration
if (timeout >= 3 && timeout <= 10) {
retryInterval = 500;
}
if (timeout > 10) {
retryInterval = 1000;
}
return retryInterval;
}
```
Maybe we need to remove this code and allow to change retry interval or allow to override this method?
if possible, change log level to CRITICAL for this use-case. tbd if we should specify cpu in message
The text was updated successfully, but these errors were encountered: