File tree 1 file changed +11
-9
lines changed
server/src/main/java/org/opensearch/common/blobstore/transfer
1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -82,15 +82,17 @@ public RemoteTransferContainer(
82
82
long expectedChecksum ,
83
83
boolean isRemoteDataIntegritySupported
84
84
) {
85
- this .fileName = fileName ;
86
- this .remoteFileName = remoteFileName ;
87
- this .contentLength = contentLength ;
88
- this .failTransferIfFileExists = failTransferIfFileExists ;
89
- this .writePriority = writePriority ;
90
- this .offsetRangeInputStreamSupplier = offsetRangeInputStreamSupplier ;
91
- this .expectedChecksum = expectedChecksum ;
92
- this .isRemoteDataIntegritySupported = isRemoteDataIntegritySupported ;
93
- this .metadata = null ;
85
+ this (
86
+ fileName ,
87
+ remoteFileName ,
88
+ contentLength ,
89
+ failTransferIfFileExists ,
90
+ writePriority ,
91
+ offsetRangeInputStreamSupplier ,
92
+ expectedChecksum ,
93
+ isRemoteDataIntegritySupported ,
94
+ null
95
+ );
94
96
}
95
97
96
98
/**
You can’t perform that action at this time.
0 commit comments