Skip to content
Merged
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 @@ -100,10 +100,6 @@ public DefaultTableRuntime scheduleTable(Set<ServerTableIdentifier> skipSet) {
private Comparator<DefaultTableRuntime> createSorterByPolicy() {
if (sorterFactoryCache.get(policyName) != null) {
SorterFactory sorterFactory = sorterFactoryCache.get(policyName);
LOG.debug(
"Using sorter instance {} corresponding to the scheduling policy {}",
sorterFactory.getClass().getName(),
policyName);
return sorterFactory.createComparator();
} else {
throw new IllegalArgumentException("Unsupported scheduling policy: " + policyName);
Expand Down