We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e77d8f commit 85bf9f3Copy full SHA for 85bf9f3
metadata-ingestion/src/datahub/ingestion/source/vertexai.py
@@ -179,9 +179,9 @@ def get_workunits_internal(self) -> Iterable[MetadataWorkUnit]:
179
# Fetch and Ingest Training Jobs
180
yield from auto_workunit(self._get_training_jobs_mcps())
181
# Fetch and Ingest Experiments
182
- # yield from self._get_experiments_workunits()
+ yield from self._get_experiments_workunits()
183
# Fetch and Ingest Experiment Runs
184
- # yield from auto_workunit(self._get_experiment_runs_mcps())
+ yield from auto_workunit(self._get_experiment_runs_mcps())
185
186
def _get_experiments_workunits(self) -> Iterable[MetadataWorkUnit]:
187
# List all experiments
0 commit comments