We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c648109 commit 6eb7374Copy full SHA for 6eb7374
plugins/modules/env_info.py
@@ -434,7 +434,9 @@ def process(self):
434
if self.descendants and self.environments:
435
updated_envs = []
436
for this_env in self.environments:
437
- df = self.cdpy.df.describe_environment(this_env['crn'])
+ df = None
438
+ # Removing until DF is GA so we are not dependent on Beta functionality
439
+ # df = self.cdpy.df.describe_environment(this_env['crn'])
440
this_env['descendants'] = {
441
'datahub': self.cdpy.datahub.describe_all_clusters(this_env['environmentName']),
442
'dw': self.cdpy.dw.gather_clusters(this_env['crn']),
0 commit comments