Skip to content

Commit 122b8eb

Browse files
[Postgres] Remove high availability restriction for Premium SSD V2
1 parent 3fa1e89 commit 122b8eb

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/azure-cli/azure/cli/command_modules/rdbms/validators.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -907,8 +907,6 @@ def _pg_storage_type_validator(storage_type, auto_grow, high_availability, geo_r
907907
if is_create_ssdv2 or is_update_ssdv2:
908908
if auto_grow and auto_grow.lower() != 'disabled':
909909
raise ValidationError("Storage Auto-grow is not supported for servers with Premium SSD V2.")
910-
if high_availability and high_availability.lower() != 'disabled':
911-
raise ValidationError("High availability is not supported for servers with Premium SSD V2.")
912910
if geo_redundant_backup and geo_redundant_backup.lower() != 'disabled':
913911
raise ValidationError("Geo-redundancy is not supported for servers with Premium SSD V2.")
914912
if performance_tier:

0 commit comments

Comments
 (0)