flowchartsman edited a comment on issue #8216:
URL: https://github.com/apache/pulsar/issues/8216#issuecomment-736224054
@vaihtovirta I have discovered the issue. There are spurious single quotes
(`'`) are getting added to the arguments to the pulsar function, causing it to
fail parsing. The offending line is located in
`pulsar-functions/runtime/src/main/java/org/apache/pulsar/functions/runtime/RuntimeUtils.java`:
```java
args.add("'" + configContent + "'");
```
Should be:
```java
args.add(configContent);
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]