remove FIXME
This commit is contained in:
parent
a97570bd06
commit
df7a801945
|
|
@ -64,7 +64,7 @@ void ServerKnobs::initialize(Randomize randomize, ClientKnobs* clientKnobs, IsSi
|
|||
init( TLOG_MESSAGE_BLOCK_BYTES, 10e6 );
|
||||
init( TLOG_MESSAGE_BLOCK_OVERHEAD_FACTOR, double(TLOG_MESSAGE_BLOCK_BYTES) / (TLOG_MESSAGE_BLOCK_BYTES - MAX_MESSAGE_SIZE) ); //1.0121466709838096006362758832473
|
||||
init( PEEK_TRACKER_EXPIRATION_TIME, 600 ); if( randomize && BUGGIFY ) PEEK_TRACKER_EXPIRATION_TIME = deterministicRandom()->coinflip() ? 0.1 : 120;
|
||||
init( PEEK_USING_STREAMING, true );
|
||||
init( PEEK_USING_STREAMING, true );
|
||||
init( PARALLEL_GET_MORE_REQUESTS, 32 ); if( randomize && BUGGIFY ) PARALLEL_GET_MORE_REQUESTS = 2;
|
||||
init( MULTI_CURSOR_PRE_FETCH_LIMIT, 10 );
|
||||
init( MAX_QUEUE_COMMIT_BYTES, 15e6 ); if( randomize && BUGGIFY ) MAX_QUEUE_COMMIT_BYTES = 5000;
|
||||
|
|
|
|||
|
|
@ -694,11 +694,9 @@ ACTOR Future<Void> logRouterCore(TLogInterface interf,
|
|||
req.reply, &logRouterData, req.begin, req.tag, req.returnIfBlocked, req.onlySpilled, req.sequence));
|
||||
}
|
||||
when(TLogPeekStreamRequest req = waitNext(interf.peekStreamMessages.getFuture())) {
|
||||
// FIXME: currently LogRouter doesn't support streaming peek request
|
||||
TraceEvent(SevDebug, "LogRouterPeekStream", logRouterData.dbgid)
|
||||
.detail("Token", interf.peekStreamMessages.getEndpoint().token);
|
||||
addActor.send(logRouterPeekStream(&logRouterData, req));
|
||||
// req.reply.sendError(operation_failed());
|
||||
}
|
||||
when(TLogPopRequest req = waitNext(interf.popMessages.getFuture())) {
|
||||
// Request from remote tLog to pop data from LR
|
||||
|
|
|
|||
Loading…
Reference in New Issue