licl2014 opened a new issue #9869:
URL: https://github.com/apache/druid/issues/9869


   log error in CoordinatorBasedSegmentHandoffNotifier is incorrect
   
   ### Affected Version
   
   all version.
   
   ### Description
   
   ```
             log.error(
                 e,
                 "Exception while checking handoff for dataSource[%s] 
Segment[%s], Will try again after [%d]secs",
                 dataSource,
                 descriptor,
                 pollDurationMillis
             );
   ```
   should be
   ```
             log.error(
                 e,
                 "Exception while checking handoff for dataSource[%s] 
Segment[%s], Will try again after [%d]millis",
                 dataSource,
                 descriptor,
                 pollDurationMillis
             );
   ```
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to