Skip to content

Commit 6eb7374

Browse files
authored
Remove DataFlow dependency gathering
* Remove DF dependency until GA release of endpoint Signed-off-by: Daniel Chaffelson <chaffelson@gmail.com>
1 parent c648109 commit 6eb7374

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugins/modules/env_info.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,9 @@ def process(self):
434434
if self.descendants and self.environments:
435435
updated_envs = []
436436
for this_env in self.environments:
437-
df = self.cdpy.df.describe_environment(this_env['crn'])
437+
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'])
438440
this_env['descendants'] = {
439441
'datahub': self.cdpy.datahub.describe_all_clusters(this_env['environmentName']),
440442
'dw': self.cdpy.dw.gather_clusters(this_env['crn']),

0 commit comments

Comments
 (0)