Skip to content

Commit

Permalink
fix(iceberg-cli): add missing filter for iceberg dataplatform
Browse files Browse the repository at this point in the history
  • Loading branch information
chakru-r committed Feb 26, 2025
1 parent 7cfee8b commit e2ec721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metadata-ingestion/src/datahub/cli/iceberg_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -645,7 +645,7 @@ def get_all_warehouses(client: DataHubGraph) -> Iterator[str]:
graph_query = """
query getIcebergWarehouses($start: Int, $count: Int) {
search(
input: {type: DATA_PLATFORM_INSTANCE, query: "*", start: $start, count: $count}
input: {type: DATA_PLATFORM_INSTANCE, query: "dataPlatform=iceberg", start: $start, count: $count}
) {
start
total
Expand Down

0 comments on commit e2ec721

Please sign in to comment.