mas-cli 15.1.9__py3-none-any.whl → 15.1.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mas-cli might be problematic. Click here for more details.

mas/cli/__init__.py CHANGED
@@ -8,4 +8,4 @@
8
8
  #
9
9
  # *****************************************************************************
10
10
 
11
- __version__ = "15.1.9" # Python module compatible semver
11
+ __version__ = "15.1.10" # Python module compatible semver
mas/cli/cli.py CHANGED
@@ -117,7 +117,7 @@ class BaseApp(PrintMixin, PromptMixin):
117
117
  logging.getLogger('asyncio').setLevel(logging.INFO)
118
118
 
119
119
  # Supports extended semver, unlike mas.cli.__version__
120
- self.version = "15.1.9"
120
+ self.version = "15.1.10"
121
121
  self.h1count = 0
122
122
  self.h2count = 0
123
123
 
mas/cli/install/app.py CHANGED
@@ -1139,11 +1139,11 @@ class InstallApp(BaseApp, InstallSettingsMixin, InstallSummarizerMixin, ConfigGe
1139
1139
 
1140
1140
  # Version before 9.1 cannot have empty components
1141
1141
  if (self.getParam("mas_channel").startswith("8.") or self.getParam("mas_channel").startswith("9.0")) and self.getParam("mas_appws_components") == "":
1142
- self.fatalError("--mas_appws_components must be set for versions earlier than 9.1.0")
1142
+ self.fatalError("--manage-components must be set for versions earlier than 9.1.0")
1143
1143
 
1144
1144
  # An error should be raised if "health" is not specified when installing Predict.
1145
1145
  if ((self.getParam("mas_app_channel_predict") is not None and self.getParam("mas_app_channel_predict") != "") and 'health' not in self.getParam("mas_appws_components")):
1146
- self.fatalError("--mas_appws_components must include 'health' component when installing Predict")
1146
+ self.fatalError("--manage-components must include 'health' component when installing Predict")
1147
1147
 
1148
1148
  @logMethodCall
1149
1149
  def install(self, argv):