You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ki...@apache.org on 2022/08/01 08:59:08 UTC

[incubator-seatunnel] branch dev updated: [Improve][Connector-V2] Fix the log information (#2317)

This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


The following commit(s) were added to refs/heads/dev by this push:
     new 736983a70 [Improve][Connector-V2] Fix the log information (#2317)
736983a70 is described below

commit 736983a7088388b9b718df9bd21617a7622ed095
Author: TyrantLucifer <Ty...@gmail.com>
AuthorDate: Mon Aug 1 16:59:01 2022 +0800

    [Improve][Connector-V2] Fix the log information (#2317)
---
 .../seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/seatunnel-connectors-v2/connector-http/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java b/seatunnel-connectors-v2/connector-http/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java
index f11d6f581..c26bb055e 100644
--- a/seatunnel-connectors-v2/connector-http/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java
+++ b/seatunnel-connectors-v2/connector-http/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java
@@ -71,7 +71,7 @@ public class HttpSourceReader extends AbstractSingleSplitReader<SeaTunnelRow> {
         } finally {
             if (Boundedness.BOUNDED.equals(context.getBoundedness())) {
                 // signal to the source that we have reached the end of the data.
-                LOGGER.info("Closed the bounded fake source");
+                LOGGER.info("Closed the bounded http source");
                 context.signalNoMoreElement();
             }
         }