Skip to content

Commit

Permalink
increment timeout time
Browse files Browse the repository at this point in the history
  • Loading branch information
liaoxin01 committed Jul 4, 2023
1 parent 3302bd9 commit 6a6b663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/service/backend_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ void BackendService::check_storage_format(TCheckStorageFormatResult& result) {

void BackendService::ingest_binlog(TIngestBinlogResult& result,
const TIngestBinlogRequest& request) {
constexpr uint64_t kMaxTimeoutMs = 1000;
constexpr uint64_t kMaxTimeoutMs = 10000;
TStatus tstatus;
Defer defer {[&result, &tstatus]() { result.__set_status(tstatus); }};

Expand Down

0 comments on commit 6a6b663

Please sign in to comment.