Skip to content

Commit bfef224

Browse files
Do not override VFS config options in REST CI. (#5692)
Extracts 4e56a79 from #5631, in order to unblock changes to REST CI needed for that PR. --- TYPE: NO_HISTORY
1 parent 36da774 commit bfef224

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/support/src/vfs_helpers.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,10 @@ Status SupportedFsS3::prepare_config(
173173
[[maybe_unused]] tiledb_config_t* config,
174174
[[maybe_unused]] tiledb_error_t* error) {
175175
#ifndef TILEDB_TESTS_AWS_S3_CONFIG
176+
if (rest_) {
177+
// REST CI gets configured by environment variables.
178+
return Status::Ok();
179+
}
176180
REQUIRE(
177181
tiledb_config_set(
178182
config, "vfs.s3.endpoint_override", "localhost:9999", &error) ==

0 commit comments

Comments
 (0)