Skip to content

Commit 892e330

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent dd7ded8 commit 892e330

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

x-pack/plugin/snapshot-repo-test-kit/src/main/java/org/elasticsearch/repositories/blobstore/testkit/analyze/RepositoryAnalyzeAction.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,8 @@ public void run() {
523523
final boolean smallBlob = targetLength <= MAX_ATOMIC_WRITE_SIZE; // avoid the atomic API for larger blobs
524524
final boolean abortWrite = smallBlob && request.isAbortWritePermitted() && rarely(random);
525525
final boolean doCopy = minClusterTransportVersion.onOrAfter(TransportVersions.REPO_ANALYSIS_COPY_BLOB)
526-
&& rarely(random) && i > 0;
526+
&& rarely(random)
527+
&& i > 0;
527528
final String blobName = "test-blob-" + i + "-" + UUIDs.randomBase64UUID(random);
528529
String copyBlobName = null;
529530
if (doCopy) {

0 commit comments

Comments
 (0)