You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2019/12/07 08:32:11 UTC

[kylin] branch 2.6.x updated: KYLIN-4283: return SUCCEED while IOException happend in GarbageCollectionStep

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

shaofengshi pushed a commit to branch 2.6.x
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/2.6.x by this push:
     new ca72e64  KYLIN-4283: return SUCCEED while IOException happend in GarbageCollectionStep
ca72e64 is described below

commit ca72e649b789ca5ad984588e1d1c3b096c260efb
Author: Zhou Kang <zh...@xiaomi.com>
AuthorDate: Sat Dec 7 13:12:16 2019 +0800

    KYLIN-4283: return SUCCEED while IOException happend in GarbageCollectionStep
---
 .../apache/kylin/storage/hbase/steps/HDFSPathGarbageCollectionStep.java  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HDFSPathGarbageCollectionStep.java b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HDFSPathGarbageCollectionStep.java
index 3ec27d4..98ac91d 100644
--- a/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HDFSPathGarbageCollectionStep.java
+++ b/storage-hbase/src/main/java/org/apache/kylin/storage/hbase/steps/HDFSPathGarbageCollectionStep.java
@@ -67,7 +67,6 @@ public class HDFSPathGarbageCollectionStep extends AbstractExecutable {
         } catch (IOException e) {
             logger.error("job:" + getId() + " execute finished with exception", e);
             output.append("\n").append(e.getLocalizedMessage());
-            return new ExecuteResult(ExecuteResult.State.ERROR, output.toString(), e);
         }
 
         return new ExecuteResult(ExecuteResult.State.SUCCEED, output.toString());