mirror of https://github.com/apache/cassandra
fix String.format specifier for getSessionID (long->UUID) for logger
This commit is contained in:
parent
be559a38b1
commit
f1ea0ab8db
|
|
@ -127,7 +127,7 @@ public class StreamInSession extends AbstractStreamSession
|
|||
retries++;
|
||||
if (retries > DatabaseDescriptor.getMaxStreamingRetries())
|
||||
{
|
||||
logger.error(String.format("Failed streaming session %d from %s while receiving %s", getSessionId(), getHost().toString(), current),
|
||||
logger.error(String.format("Failed streaming session %s from %s while receiving %s", getSessionId(), getHost().toString(), current),
|
||||
new IllegalStateException("Too many retries for " + remoteFile));
|
||||
close(false);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Reference in New Issue