You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by go...@apache.org on 2022/03/17 09:12:48 UTC

[incubator-inlong] branch master updated: [INLONG-3077][Agent] FileNotFoundException occurred in unit tests #3077 (#3187)

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

gosonzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new c63fa38  [INLONG-3077][Agent] FileNotFoundException occurred in unit tests #3077 (#3187)
c63fa38 is described below

commit c63fa3873aad46dac91a87320007c9842a8d02bc
Author: ziruipeng <zp...@connect.ust.hk>
AuthorDate: Thu Mar 17 17:12:44 2022 +0800

    [INLONG-3077][Agent] FileNotFoundException occurred in unit tests #3077 (#3187)
---
 .../apache/inlong/agent/plugin/sources/TestBinlogOffsetManager.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/inlong-agent/agent-plugins/src/test/java/org/apache/inlong/agent/plugin/sources/TestBinlogOffsetManager.java b/inlong-agent/agent-plugins/src/test/java/org/apache/inlong/agent/plugin/sources/TestBinlogOffsetManager.java
index 7da2193..4d6ec4d 100644
--- a/inlong-agent/agent-plugins/src/test/java/org/apache/inlong/agent/plugin/sources/TestBinlogOffsetManager.java
+++ b/inlong-agent/agent-plugins/src/test/java/org/apache/inlong/agent/plugin/sources/TestBinlogOffsetManager.java
@@ -30,13 +30,13 @@ import org.slf4j.LoggerFactory;
 
 public class TestBinlogOffsetManager {
 
-    private static final Logger LOGGER = LoggerFactory.getLogger(TestTextFileReader.class);
+    private static final Logger LOGGER = LoggerFactory.getLogger(TestBinlogOffsetManager.class);
     private static Path testDir;
     private static AgentBaseTestsHelper helper;
 
     @BeforeClass
     public static void setup() {
-        helper = new AgentBaseTestsHelper(TestTextFileReader.class.getName()).setupAgentHome();
+        helper = new AgentBaseTestsHelper(TestBinlogOffsetManager.class.getName()).setupAgentHome();
         testDir = helper.getTestRootDir();
     }