Github user mxm commented on a diff in the pull request:
https://github.com/apache/flink/pull/2425#discussion_r84035347
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/io/network/netty/NettyMessage.java
---
@@ -424,13 +481,17 @@ public String toString() {
ResultPartitionID partitionId;
+ String secureCookie = "";
+
public TaskEventRequest() {
}
- TaskEventRequest(TaskEvent event, ResultPartitionID
partitionId, InputChannelID receiverId) {
+ TaskEventRequest(TaskEvent event, ResultPartitionID
partitionId, InputChannelID receiverId,
+ String secureCookie) {
this.event = event;
this.receiverId = receiverId;
this.partitionId = partitionId;
+ this.secureCookie = (secureCookie == null ||
secureCookie.length() == 0) ? "": secureCookie;
--- End diff --
Please pass a proper non-null secureCookie instead.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---