diff --git a/be/src/http/action/http_stream.cpp b/be/src/http/action/http_stream.cpp index 322b28c3f2d9d0..9930bc8bb609e4 100644 --- a/be/src/http/action/http_stream.cpp +++ b/be/src/http/action/http_stream.cpp @@ -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("There is no space for group commit async wal."); + << max_available_size << " Bytes). "; + return Status::Error( + "There is no space for group commit async wal."); } } } diff --git a/be/src/http/action/stream_load.cpp b/be/src/http/action/stream_load.cpp index fc56bf59f45ffa..4ad17fc0087c4a 100644 --- a/be/src/http/action/stream_load.cpp +++ b/be/src/http/action/stream_load.cpp @@ -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("There is no space for group commit async wal."); + << max_available_size << " Bytes). "; + return Status::Error( + "There is no space for group commit async wal."); } } }