diff --git a/data_store_service_client.cpp b/data_store_service_client.cpp index dfbf6ed..9f467a3 100644 --- a/data_store_service_client.cpp +++ b/data_store_service_client.cpp @@ -4229,7 +4229,6 @@ bool DataStoreServiceClient::InitPreBuiltTables() callback_data, &SyncCallback); callback_data->Wait(); - if (callback_data->Result().error_code() != remote::DataStoreError::NO_ERROR) { diff --git a/eloq_data_store_service/data_store_service.h b/eloq_data_store_service/data_store_service.h index 35bd337..6686b50 100644 --- a/eloq_data_store_service/data_store_service.h +++ b/eloq_data_store_service/data_store_service.h @@ -605,9 +605,6 @@ class DataStoreService : EloqDS::remote::DataStoreRpcService bool IsOwnerOfShard(uint32_t shard_id) const { - DLOG(INFO) << "IsOwnerOfShard check: shard_status=" - << static_cast(shard_status_.load()) << ", shard_id_=" - << shard_id_ << ", check_shard_id=" << shard_id; return shard_status_.load(std::memory_order_acquire) != DSShardStatus::Closed && shard_id_ == shard_id;