From 116b7302cc908ffadbd7e80553de45b7b849b1bd Mon Sep 17 00:00:00 2001 From: Bhautik Vala Date: Mon, 9 Feb 2026 16:00:53 +0530 Subject: [PATCH] [patch] Fix condition for dev-mode in Install AI Service section --- python/src/mas/cli/install/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/src/mas/cli/install/app.py b/python/src/mas/cli/install/app.py index f6849849f1..b2eda8234e 100644 --- a/python/src/mas/cli/install/app.py +++ b/python/src/mas/cli/install/app.py @@ -940,7 +940,7 @@ def configApps(self): # TODO: May be have to change this condition if Manage 9.0 is not supporting AI Cofig Application # AI Service is only installable on Manage 9.x as AI Config Application is not supported on Manage 8.x - if isVersionEqualOrAfter('9.0.0', self.getParam("mas_app_channel_manage")): + if self.devMode or isVersionEqualOrAfter('9.0.0', self.getParam("mas_app_channel_manage")): self.installAIService = self.yesOrNo("Install AI Service") if self.installAIService: self.configAIService()