Skip to content

Commit

Permalink
Set REST server serialization format to JSON.
Browse files Browse the repository at this point in the history
  • Loading branch information
teo-tsirpanis committed Oct 24, 2024
1 parent 98adaf4 commit c3c4fd3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions test/support/src/vfs_helpers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,12 @@ Status SupportedFsS3::prepare_config(
tiledb_config_set(config, "ssl.verify", "false", &error) == TILEDB_OK);
REQUIRE(error == nullptr);
#endif
if (is_rest()) {
REQUIRE(
tiledb_config_set(
config, "rest.server_serialization_format", "JSON", &error) ==
TILEDB_OK);
}

return Status::Ok();
}
Expand Down

0 comments on commit c3c4fd3

Please sign in to comment.