Skip to content

Commit

Permalink
Fix for Set-AzSqlManagedInstance to not set Geo be default (#12921)
Browse files Browse the repository at this point in the history
Co-authored-by: Perica Trajkov <[email protected]>
  • Loading branch information
petrajkogit and petrajko authored Sep 11, 2020
1 parent 51bb40a commit 4da0179
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ public static string MapExternalBackupStorageRedundancyToInternal(string backupS
case "Zone":
return "ZRS";
default:
return "GRS";
return null;
}
}

Expand All @@ -281,7 +281,7 @@ public static string MapInternalBackupStorageRedundancyToExternal(string backupS
case "ZRS":
return "Zone";
default:
return "Geo";
return null;
}
}
}
Expand Down

0 comments on commit 4da0179

Please sign in to comment.