You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@accumulo.apache.org by GitBox <gi...@apache.org> on 2022/05/04 18:21:37 UTC

[GitHub] [accumulo] keith-turner commented on a diff in pull request #2665: Eventually Consistent scans / ScanServer feature

keith-turner commented on code in PR #2665:
URL: https://github.com/apache/accumulo/pull/2665#discussion_r865139710


##########
server/tserver/src/main/java/org/apache/accumulo/tserver/ThriftScanClientHandler.java:
##########
@@ -253,7 +279,9 @@ private ScanResult continueScan(TInfo tinfo, long scanID, SingleScanSession scan
     } catch (CancellationException ce) {
       server.getSessionManager().removeSession(scanID);
       Tablet tablet = server.getOnlineTablet(scanSession.extent);

Review Comment:
   Ran into an exception while testing.  Think the following is a fix for it.
   
   ```suggestion
         TabletBase tablet = scanSession.getTabletResolver().getTablet(scanSession.extent);
   ```



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

To unsubscribe, e-mail: notifications-unsubscribe@accumulo.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org