You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by GitBox <gi...@apache.org> on 2022/09/23 01:46:04 UTC

[GitHub] [incubator-seatunnel] YMBSKLK commented on issue #2853: [Bug] [seatunnel-transform-flink-udf] udf module classNames initialization error

YMBSKLK commented on issue #2853:
URL: https://github.com/apache/incubator-seatunnel/issues/2853#issuecomment-1255718007

   In line 102 of org.apache.seatunnel.flink.transform.UDF:
   properties.forEach((k, v) -> { classNames.add(String.valueOf(**_k_**)); functionNames.add(String.valueOf(k)); });
   should be
   properties.forEach((k, v) -> { classNames.add(String.valueOf(**_v_**)); functionNames.add(String.valueOf(k)); });


-- 
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: commits-unsubscribe@seatunnel.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org