You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by sa...@apache.org on 2018/10/23 23:07:24 UTC

[pulsar] branch master updated: Remove annoying error message. (#2825)

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

sanjeevrk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b3d50d  Remove annoying error message. (#2825)
5b3d50d is described below

commit 5b3d50ddc6620a6ccb8fb52dd53b50c4f337083a
Author: Sanjeev Kulkarni <sa...@gmail.com>
AuthorDate: Tue Oct 23 16:07:19 2018 -0700

    Remove annoying error message. (#2825)
---
 .../java/org/apache/pulsar/functions/instance/JavaInstanceRunnable.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/pulsar-functions/instance/src/main/java/org/apache/pulsar/functions/instance/JavaInstanceRunnable.java b/pulsar-functions/instance/src/main/java/org/apache/pulsar/functions/instance/JavaInstanceRunnable.java
index b32ab9d..ace5efc 100644
--- a/pulsar-functions/instance/src/main/java/org/apache/pulsar/functions/instance/JavaInstanceRunnable.java
+++ b/pulsar-functions/instance/src/main/java/org/apache/pulsar/functions/instance/JavaInstanceRunnable.java
@@ -240,7 +240,6 @@ public class JavaInstanceRunnable implements AutoCloseable, Runnable {
                 instanceConfig.getInstanceName(),
                 jarFile);
         } catch (FileNotFoundException e) {
-            log.info("For Function {} Loading as NAR failed with {}; treating it as Jar instead", instanceConfig, e);
             // create the function class loader
             fnCache.registerFunctionInstance(
                     instanceConfig.getFunctionId(),