Skip to content

Commit 5e455b1

Browse files
committed
Fix rebase issues
1 parent 8ab80ff commit 5e455b1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tiledb/sm/consolidator/consolidator.cc

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,8 @@ void Consolidator::fragments_consolidate(
213213
}
214214

215215
if (array_uri.is_tiledb()) {
216-
throw_if_not_ok(
217-
storage_manager->resources().rest_client()->post_consolidation_to_rest(
218-
array_uri, config, &fragment_uris));
216+
throw_if_not_ok(resources.rest_client()->post_consolidation_to_rest(
217+
array_uri, config, &fragment_uris));
219218
} else {
220219
// Check if array exists
221220
if (object_type(resources, array_uri) != ObjectType::ARRAY) {

tiledb/sm/rest/rest_client.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,8 @@ class RestClient {
466466
}
467467

468468
/// Operation disabled in base class.
469-
inline virtual Status post_consolidation_to_rest(const URI&, const Config&, const std::vector<std::string>*) {
469+
inline virtual Status post_consolidation_to_rest(
470+
const URI&, const Config&, const std::vector<std::string>* = nullptr) {
470471
throw RestClientDisabledException();
471472
}
472473

tiledb/sm/rest/rest_client_remote.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1531,7 +1531,7 @@ Status RestClientRemote::ensure_json_null_delimited_string(Buffer* buffer) {
15311531
return Status::Ok();
15321532
}
15331533

1534-
Status RestClient::post_consolidation_to_rest(
1534+
Status RestClientRemote::post_consolidation_to_rest(
15351535
const URI& uri,
15361536
const Config& config,
15371537
const std::vector<std::string>* fragment_uris) {

0 commit comments

Comments
 (0)