You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will result in an error with the following stacktrace:
Error: javax.script.ScriptException: java.lang.ClassCastException: [Ljava.lang.String; cannot be cast to java.util.List
at RexsterClient.<anonymous> (/Users/gching/Projects/app-builder/api/node_modules/grex/src/rexsterclient.js:117:34)
at IncomingMessage.EventEmitter.emit (events.js:117:20)
at _stream_readable.js:910:16
at process._tickCallback (node.js:415:13)
Trying to debug it personally, the script being sent over is:
The thing to note is that %5B and %5D is present, which represents the [ and ] respectively. I am assuming that is being parsed through ArrayArgument rather than the Argument helper class. I don't know much about the code base and have just recently started using grex so I might be making wrong assumptions; do tell me if I am.
Thanks for the help!
The text was updated successfully, but these errors were encountered:
I am probably doing something wrong here but just wanted to post it here if it is an actual error.
I am passing an array of strings over to be used as an argument for the
.out()
transform function. Specifically, my code is the following:This will result in an error with the following stacktrace:
Trying to debug it personally, the script being sent over is:
The thing to note is that %5B and %5D is present, which represents the
[
and]
respectively. I am assuming that is being parsed throughArrayArgument
rather than theArgument
helper class. I don't know much about the code base and have just recently started using grex so I might be making wrong assumptions; do tell me if I am.Thanks for the help!
The text was updated successfully, but these errors were encountered: