You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by kh...@apache.org on 2017/03/28 16:46:58 UTC

[30/35] geode git commit: Add initial todo comment

Add initial todo comment


Project: http://git-wip-us.apache.org/repos/asf/geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/73fb726f
Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/73fb726f
Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/73fb726f

Branch: refs/heads/feature/GEODE-2420
Commit: 73fb726fb3ae4ba6500efa8eddbff1371cbdb073
Parents: 8d1426d
Author: Kirk Lund <kl...@apache.org>
Authored: Wed Mar 8 13:31:13 2017 -0800
Committer: Ken Howe <kh...@pivotal.io>
Committed: Mon Mar 27 14:12:00 2017 -0700

----------------------------------------------------------------------
 .../management/internal/cli/commands/ExportLogsCommand.java | 9 +++++++++
 1 file changed, 9 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/geode/blob/73fb726f/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ExportLogsCommand.java
----------------------------------------------------------------------
diff --git a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ExportLogsCommand.java b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ExportLogsCommand.java
index 61b4da7..6ffe58f 100644
--- a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ExportLogsCommand.java
+++ b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/ExportLogsCommand.java
@@ -29,6 +29,7 @@ import org.apache.geode.management.internal.cli.functions.ExportLogsFunction;
 import org.apache.geode.management.internal.cli.functions.SizeExportLogsFunction;
 import org.apache.geode.management.internal.cli.i18n.CliStrings;
 import org.apache.geode.management.internal.cli.result.ResultBuilder;
+import org.apache.geode.management.internal.cli.shell.Gfsh;
 import org.apache.geode.management.internal.cli.util.ExportLogsCacheWriter;
 import org.apache.geode.internal.logging.log4j.LogLevel;
 import org.apache.geode.management.internal.configuration.utils.ZipUtils;
@@ -197,6 +198,14 @@ public class ExportLogsCommand implements CommandMarker {
     return result;
   }
 
+  protected static Gfsh getGfsh() {
+    return Gfsh.getCurrentInstance();
+  }
+
+  boolean isOverDiskSpaceThreshold() {
+    return false;
+  }
+
   /**
    * Returns file size limit in bytes
    */