Skip to content

Commit f4beb89

Browse files
feat: adding support for single value secret stores
1 parent a98dd87 commit f4beb89

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

application_sdk/services/secretstore.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,9 @@ async def _get_credentials_async(credential_guid: str) -> Dict[str, Any]:
8989
credential_guid, StateType.CREDENTIALS
9090
)
9191

92-
credential_source_str = credential_config.get("credentialSource", "direct")
92+
credential_source_str = credential_config.get(
93+
"credentialSource", CredentialSource.DIRECT.value
94+
)
9395
try:
9496
credential_source = CredentialSource(credential_source_str)
9597
except ValueError:

0 commit comments

Comments
 (0)