Skip to content

Commit

Permalink
fix(api): dont override name
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren committed Nov 26, 2024
1 parent ed3bc2f commit 7b6723f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keep/providers/providers_factory.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ def get_installed_providers(
provider_auth = {
key: "demo"
for key in provider_auth
if isinstance(provider_auth[key], str)
if isinstance(provider_auth[key], str) and key != "name"
}
# Somehow the provider is installed but the secret is missing, probably bug in deletion
# TODO: solve its root cause
Expand Down

0 comments on commit 7b6723f

Please sign in to comment.