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
java.lang.IllegalArgumentException: Cannot deserialize instance of `java.lang.Boolean` out of START_OBJECT token
at [Source: UNKNOWN; line: -1, column: -1]
at com.fasterxml.jackson.databind.ObjectMapper._convert(ObjectMapper.java:3922)
at com.fasterxml.jackson.databind.ObjectMapper.convertValue(ObjectMapper.java:3873)
at com.azure.autorest.extension.base.jsonrpc.Connection.lambda$process$3(Connection.java:285)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: com.fasterxml.jackson.databind.exc.MismatchedInputException: Cannot deserialize instance of `java.lang.Boolea
n` out of START_OBJECT token
at [Source: UNKNOWN; line: -1, column: -1]
Instead one has to type --enable-xml=true. The JSON RPC module should be able to handle boolean arguments without =true.
Running
will throw
Instead one has to type
--enable-xml=true. The JSON RPC module should be able to handle boolean arguments without=true.