-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FileCopy based bootstrap] GetMetadata Api #2991
base: master
Are you sure you want to change the base?
Conversation
ambry-network/src/main/java/com/github/ambry/network/LocalRequestResponseChannel.java
Show resolved
Hide resolved
ambry-server/src/main/java/com/github/ambry/server/AmbryRequests.java
Outdated
Show resolved
Hide resolved
requestResponseChannel.sendResponse(response, request, serverNetworkResponseMetrics); | ||
} | ||
|
||
private List<LogInfo> convertStoreToProtocolLogInfo(List<com.github.ambry.store.LogInfo> logSegments) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Figure out if there is a better place to keep this conversion util.
@@ -229,7 +230,8 @@ public AmbryServerRequestsTest(boolean validateRequestOnStoreState, boolean enab | |||
|
|||
@Parameterized.Parameters | |||
public static List<Object[]> data() { | |||
return Arrays.asList(new Object[][]{{false, false}, {true, false}, {false, true}, {true, true}}); | |||
// return Arrays.asList(new Object[][]{{false, false}, {true, false}, {false, true}, {true, true}}); | |||
return Arrays.asList(new Object[][]{{false, false}}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Revert this.
@@ -1645,6 +1647,17 @@ public void healthCheckTest() throws InterruptedException, StoreException, IOExc | |||
setPropertyToAmbryRequests(currentProperties, "disk.manager.disk.healthcheck.enabled", "false"); | |||
} | |||
|
|||
@Test | |||
public void fileCopyGetMetaDataRequestTest() throws IOException, InterruptedException { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests TBA.
No description provided.