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 743829f commit dbbb85cCopy full SHA for dbbb85c
src/databricks/labs/pytester/fixtures/catalog.py
@@ -1,3 +1,4 @@
1
+import json
2
import logging
3
from collections.abc import Generator, Callable
4
from unittest.mock import Mock
@@ -419,7 +420,7 @@ def create(
419
420
aws_iam_role_arn: str = "",
421
read_only=False,
422
) -> StorageCredentialInfo:
- comment = {"RemoveAfter": watchdog_remove_after}
423
+ comment = json.dumps({"RemoveAfter": watchdog_remove_after})
424
if aws_iam_role_arn != "":
425
storage_credential = ws.storage_credentials.create(
426
credential_name,
0 commit comments