You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2018/11/19 07:36:34 UTC

[GitHub] zentol closed pull request #7133: [FLINK-10916] [DataStream API] Include duplicated user-specified uid into error message

zentol closed pull request #7133: [FLINK-10916] [DataStream API] Include duplicated user-specified uid into error message
URL: https://github.com/apache/flink/pull/7133
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/graph/StreamGraphHasherV2.java b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/graph/StreamGraphHasherV2.java
index d7c51bcbdeb..a87f49fc7b8 100644
--- a/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/graph/StreamGraphHasherV2.java
+++ b/flink-streaming-java/src/main/java/org/apache/flink/streaming/api/graph/StreamGraphHasherV2.java
@@ -177,7 +177,8 @@ private boolean generateNodeHash(
 
 			for (byte[] previousHash : hashes.values()) {
 				if (Arrays.equals(previousHash, hash)) {
-					throw new IllegalArgumentException("Hash collision on user-specified ID. " +
+					throw new IllegalArgumentException("Hash collision on user-specified ID " +
+							"\"" + userSpecifiedHash + "\". " +
 							"Most likely cause is a non-unique ID. Please check that all IDs " +
 							"specified via `uid(String)` are unique.");
 				}


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services