Jamie Love

Results 3 comments of Jamie Love

Right, I've been doing more testing. It turns out this occurs if I add OptArgs.of("durability", "hard").with("read_mode", "majority") to the tablesList().run() request. If I remove that OptArgs line (which is actually...

Hi Daniel, It's definitely a string - ``` class DatabaseValidator { String database_name = "n2ocs" ... Connection c = .... c.use (this.database_name) } ```

yes, I have this: `public static final OptArgs HARD_MAJORITY = OptArgs.of("durability", "hard").with("read_mode", "majority") ` defined, and the code as using this when performing actions - e.g: `def result = r.tableCreate("audit_table_updates").optArg("durability",...