Skip to content

Commit

Permalink
2
Browse files Browse the repository at this point in the history
  • Loading branch information
Yukang-Lian committed Jan 31, 2024
1 parent becb409 commit 167e37e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions be/src/http/action/http_stream.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,9 @@ Status HttpStreamAction::_handle_group_commit(HttpRequest* req,
? 0
: req->header(HttpHeaders::CONTENT_LENGTH))
<< " Bytes) exceeds the WAL (Write-Ahead Log) limit ("
<< max_available_size
<< " Bytes). ";
return Status::Error<EXCEEDED_LIMIT>("There is no space for group commit async wal.");
<< max_available_size << " Bytes). ";
return Status::Error<EXCEEDED_LIMIT>(
"There is no space for group commit async wal.");
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions be/src/http/action/stream_load.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -726,9 +726,9 @@ Status StreamLoadAction::_handle_group_commit(HttpRequest* req,
? 0
: req->header(HttpHeaders::CONTENT_LENGTH))
<< " Bytes) exceeds the WAL (Write-Ahead Log) limit ("
<< max_available_size
<< " Bytes). ";
return Status::Error<EXCEEDED_LIMIT>("There is no space for group commit async wal.");
<< max_available_size << " Bytes). ";
return Status::Error<EXCEEDED_LIMIT>(
"There is no space for group commit async wal.");
}
}
}
Expand Down

0 comments on commit 167e37e

Please sign in to comment.