We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ec9080 commit 9cf0362Copy full SHA for 9cf0362
singlestoredb/management/export.py
@@ -79,8 +79,8 @@ def create_cluster_identity(self) -> Dict[str, Any]:
79
f'workspaceGroups/{self.workspace_group.id}/'
80
'egress/createEgressClusterIdentity',
81
json=dict(
82
- catalogInfo=json.dumps(self.catalog_info),
83
- storageInfo=json.dumps(self.storage_info),
+ catalogInfo=self.catalog_info,
+ storageInfo=self.storage_info,
84
),
85
)
86
@@ -98,8 +98,8 @@ def start(self, tags: Optional[List[str]] = None) -> 'ExportStatus':
98
99
databaseName=self.database,
100
tableName=self.table,
101
102
103
104
105
0 commit comments