cf-natali commented on a change in pull request #383:
URL: https://github.com/apache/mesos/pull/383#discussion_r640171058



##########
File path: src/python/cli_new/lib/cli/config.py
##########
@@ -119,6 +120,94 @@ def master(self):
 
         return master
 
+    def principal(self):
+        """
+        Return the principal in the configuration file
+        """
+        principal = self.data["master"].get("principal")
+        if principal is None:
+            return None
+        elif not principal:
+            raise CLIException("The 'principal' field in 'master'"
+                               " must be non-empty")
+
+        return principal
+
+    def secret(self):
+        """
+        Return the secret in the configuration file
+        """
+        secret = self.data["master"].get("secret")
+        if secret is None:
+            return None
+        elif not secret:
+            raise CLIException("The 'secret' field in 'master'"
+                               " must be non-empty")
+
+        return secret
+
+    def agent_ssl(self):
+        """
+        Return if the agent support ssl
+        """
+        if "agent" in self.data:
+            agent_ssl = self.data["agent"].get("ssl")
+            if agent_ssl is None:
+                return None
+            elif not agent_ssl:
+                if not isinstance(self.data["agent"]["ssl"], bool):

Review comment:
       ```
   isinstance(agent_ssl, bool)
   ```




-- 
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.

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to