Skip to content

Commit e67bc81

Browse files
authored
fix(iceberg-cli): add missing filter for iceberg dataplatform
1 parent d303d03 commit e67bc81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

metadata-ingestion/src/datahub/cli/iceberg_cli.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@ def get_all_warehouses(client: DataHubGraph) -> Iterator[str]:
645645
graph_query = """
646646
query getIcebergWarehouses($start: Int, $count: Int) {
647647
search(
648-
input: {type: DATA_PLATFORM_INSTANCE, query: "*", start: $start, count: $count}
648+
input: {type: DATA_PLATFORM_INSTANCE, query: "dataPlatform:iceberg", start: $start, count: $count}
649649
) {
650650
start
651651
total

0 commit comments

Comments
 (0)