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
1. Unhandled clojure.lang.ExceptionInfo
RethinkDB server: Expected a TermType as a NUMBER but found STRING.
{:type :compile,
:response
{:t 17,
:r ["Expected a TermType as a NUMBER but found STRING."],
:b ["nonvoting_replica_tags"]}}
removing the brackets around "secondary" results in:
1. Unhandled clojure.lang.ExceptionInfo
RethinkDB server: Expected type ARRAY but found STRING: "secondary"
{:type :query-logic,
:response
{:t 18,
:e 3000000,
:r ["Expected type ARRAY but found STRING:\n\"secondary\""],
:b ["nonvoting_replica_tags"]}}
It seems like the Clojure vector is not being converted into a RethinkDB ARRAY.
The text was updated successfully, but these errors were encountered:
I am trying to run
reconfigure
, but it seems that I can't pass an array in optargs. The following code:fails with:
removing the brackets around
"secondary"
results in:It seems like the Clojure vector is not being converted into a RethinkDB ARRAY.
The text was updated successfully, but these errors were encountered: