hkeebler commented on issue #1281: Update TabletTime.maxMetadataTime(..) to use 
MetadataTime objects instead of string
URL: https://github.com/apache/accumulo/issues/1281#issuecomment-516410336
 
 
   Not using the ample metadata implementation results in updates to the 
TabletGroupWatcher like the following which isn't horrible but the time value 
should probably be parsed on initial read and retrieved from TabletMetadata.
   ```java
   -          maxLogicalTime = TabletTime.maxMetadataTime(maxLogicalTime, 
value.toString());
   +          maxLogicalTime =
   +              TabletTime.maxMetadataTime(maxLogicalTime, 
MetadataTime.parse(value.toString()));
   ```
   
   

----------------------------------------------------------------
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]


With regards,
Apache Git Services

Reply via email to