Skip to content

Commit

Permalink
Fixed checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
gp1314 committed Aug 8, 2024
1 parent eec2c72 commit 56c59ff
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ public static BlockInStream create(FileSystemContext context, BlockInfo info,
+ "data locates in the local worker {}, shortCircuitEnabled {}, "
+ "shortCircuitPreferred {}, sourceSupportDomainSocket {}, enablePrefetchRead {})",
blockId, dataSource, NetworkAddressUtils.getClientHostName(alluxioConf), dataSource,
sourceIsLocal, shortCircuit, shortCircuitPreferred, sourceSupportsDomainSocket, enablePrefetchRead);
sourceIsLocal, shortCircuit, shortCircuitPreferred, sourceSupportsDomainSocket,
enablePrefetchRead);
return createGrpcBlockInStream(context, dataSource, dataSourceType, blockId,
blockSize, options);
}
Expand Down Expand Up @@ -289,8 +290,8 @@ protected BlockInStream(DataReader.Factory dataReaderFactory,
* @param enablePrefetchRead whether to enable prefetch
*/
@VisibleForTesting
protected BlockInStream(DataReader.Factory dataReaderFactory,
WorkerNetAddress address, BlockInStreamSource blockSource, long id, long length, boolean enablePrefetchRead) {
protected BlockInStream(DataReader.Factory dataReaderFactory, WorkerNetAddress address,
BlockInStreamSource blockSource, long id, long length, boolean enablePrefetchRead) {
this(dataReaderFactory, address, blockSource, id, length);
mEnablePrefetchRead = enablePrefetchRead;
}
Expand Down

0 comments on commit 56c59ff

Please sign in to comment.