Skip to content

Commit

Permalink
Accept boris' review suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: Boris Zbarsky <[email protected]>
  • Loading branch information
soares-sergio and bzbarsky-apple authored Dec 16, 2024
1 parent 145c86c commit fe73953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tools/zap/update_cluster_revisions.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def get_outdated_clusters(data: object, xml_clusters: dict, args) -> list[Cluste
if args.cluster_id is not None and cluster['code'] != args.cluster_id:
continue
for attribute in cluster.get("attributes", []):
if attribute.get("name") != "ClusterRevision" or attribute.get("storageOption") != "RAM":
if attribute.get("name") != "ClusterRevision" or attribute.get("storageOption") == "External":
continue
try:
cluster_revision = int(attribute.get("defaultValue"))
Expand Down

0 comments on commit fe73953

Please sign in to comment.