AmatyaAvadhanula commented on code in PR #12404:
URL: https://github.com/apache/druid/pull/12404#discussion_r860822048
##########
indexing-service/src/test/java/org/apache/druid/indexing/overlord/http/OverlordResourceTest.java:
##########
@@ -265,7 +266,7 @@ public void testSecuredGetWaitingTask()
"deny",
getTaskWithIdAndDatasource("id_4", "deny")
)
- )
+ ).stream().map(this::toTaskStatusPlus).collect(Collectors.toList())
Review Comment:
Is not necessary now
##########
server/src/test/java/org/apache/druid/metadata/SQLMetadataStorageActionHandlerTest.java:
##########
@@ -53,39 +63,44 @@
public final ExpectedException thrown = ExpectedException.none();
private static final ObjectMapper JSON_MAPPER = new DefaultObjectMapper();
- private SQLMetadataStorageActionHandler<Map<String, Integer>, Map<String,
Integer>, Map<String, String>, Map<String, Integer>> handler;
+
+
+ private static final Random RANDOM = new Random(1);
+
+ private SQLMetadataStorageActionHandler<Map<String, Object>, Map<String,
Object>, Map<String, String>, Map<String, Object>> handler;
+
+ final String entryTable = "entries";
Review Comment:
done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]