Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,7 @@ public void testGetLocalResources() throws Exception {
verify(lce, times(1)).getLocalResources(container);
}

@Deprecated
private static class TestResourceHandler implements LCEResourcesHandler {
static Set<ContainerId> postExecContainers = new HashSet<ContainerId>();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,14 @@ public void run() {
FileUtils.deleteQuietly(cgroupDir);
}

@Deprecated
static class MockLinuxContainerExecutor extends LinuxContainerExecutor {
@Override
public void mountCgroups(List<String> x, String y) {
}
}

@Deprecated
static class CustomCgroupsLCEResourceHandler extends
CgroupsLCEResourcesHandler {

Expand Down