The function signatire change to "available" needed a
patch to the dashboard>orchestratior interface. This patch
just tolerates the change - if or how to consume the
additional data from "available" is yet to be deternined.
Signed-off-by: Paul Cuzner <pcuzner@redhat.com>
(cherry picked from commit
e36e1d20acf4534133bcc14dab62cc5465667a62)
def status(self):
try:
- status, message = super().available()
+ status, message, _module_details = super().available()
logger.info("is orchestrator available: %s, %s", status, message)
return dict(available=status, message=message)
except (RuntimeError, OrchestratorError, ImportError) as e: