Skip to content

Commit

Permalink
Fix spotless warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Bhumika Saini <sabhumik@amazon.com>
  • Loading branch information
Bhumika Saini committed Jul 31, 2023
1 parent a3e3de0 commit 0a75cd1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class RemoteStoreStatsIT extends RemoteStoreBaseIntegTestCase {
@Before
public void setup() {
setupRepo();
timeBeforeIndexing = RemoteStoreUtils.getCurrentSystemNanoTime() / 1_000_000L;
timeBeforeIndexing = RemoteStoreUtils.getCurrentSystemNanoTime() / 1_000_000L;
}

public void testStatsResponseFromAllNodes() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,27 +203,27 @@ static final class Fields {
static final String REMOTE_REFRESH_LATENCY_IN_MILLIS = "remote_refresh_latency_in_millis";

/**
*
* Timestamp of last successful remote store upload
*/
static final String LAST_UPLOAD_TIMESTAMP = "last_upload_timestamp";

/**
*
* Number of total uploads to remote store
*/
static final String TOTAL_UPLOADS = "total_uploads";

/**
*
* Total time spent on remote store uplaods
*/
static final String TOTAL_UPLOAD_TIME_IN_MILLIS = "total_upload_time_in_millis";

/**
*
* Represents the size of new data to be transferred as part of a remote store upload
*/
static final String UPLOAD_BYTES = "upload_bytes";

/**
*
* Time taken by a remote store upload
*/
static final String UPLOAD_TIME_IN_MILLIS = "upload_time_in_millis";
}
Expand Down

0 comments on commit 0a75cd1

Please sign in to comment.