ruanwenjun commented on pull request #6004:
URL: https://github.com/apache/dolphinscheduler/pull/6004#issuecomment-909096882


   @lyxell Ok, I see.
   There might be a bug in JSONUtils
   ```java
   public static <K, V> Map<K, V> toMap(String json, Class<K> classK, Class<V> 
classV) {
           return parseObject(json, new TypeReference<Map<K, V>>() {});
   }
   ```
   You can modified the line 156 in AbstractParameters to below code
   ```java
   Map<String, String> param = 
JSONUtils.parseObject(listIterator.next().toString(), new 
TypeReference<Map<String, String>>() {
               });
   ```


-- 
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]


Reply via email to