You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@geode.apache.org by GitBox <gi...@apache.org> on 2021/10/18 19:32:31 UTC

[GitHub] [geode-native] pdxcodemonkey commented on a change in pull request #881: GEODE-9719: Start/Stop cluster in a test fixture

pdxcodemonkey commented on a change in pull request #881:
URL: https://github.com/apache/geode-native/pull/881#discussion_r731252105



##########
File path: netcore/shared/GfshExecute.cs
##########
@@ -28,11 +28,19 @@ public class GfshExecute : Gfsh
         private String connectionCommand_ = null;
         private ITestOutputHelper output;
 
-        public GfshExecute(ITestOutputHelper output)
+        public ITestOutputHelper Output
         {
-            this.output = output;
+          get { return output; }
+          set { output = value; }
         }
 
+
+    public GfshExecute(ITestOutputHelper output)
+        {
+            //Output = output;
+            this.output = output;
+    }

Review comment:
       Looks like you have a tabs vs spaces issue in this file(?).  Please fix.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscribe@geode.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org