Skip to content

Commit 838969c

Browse files
authored
Merge pull request #115 from lhhyung/master
Skip SQL sync group collection for unsupported Hyperscale SKU
2 parents a0958f2 + 716cb55 commit 838969c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/plugin/manager/sql_servers/server_manager.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,10 @@ def list_databases(
458458
)
459459

460460
# Get Sync Groups by databases
461-
if database_dict.get("service_tier_display") != "DataWarehouse":
461+
if database_dict.get("service_tier_display") not in [
462+
"DataWarehouse",
463+
"Hyperscale",
464+
]:
462465
database_dict.update(
463466
{
464467
"sync_group": self.get_sync_group_by_databases(

0 commit comments

Comments
 (0)