From 167e37e866e1c322d60736667dadf37a9a55020a Mon Sep 17 00:00:00 2001 From: Yukang-Lian Date: Wed, 31 Jan 2024 11:52:13 +0800 Subject: [PATCH] 2 --- be/src/http/action/http_stream.cpp | 6 +++--- be/src/http/action/stream_load.cpp | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) 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."); } } }