Skip to content

Commit

Permalink
Merge branch 'release/2.6.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamDumpleton committed Aug 22, 2023
2 parents b0150bf + cef56ce commit 50ea7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion secrets-manager/handlers/secretcopier_funcs.py
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ def glob_match_name(name, items):

if (
source_secret_item.obj["type"] == target_secret_item.obj["type"]
and source_secret_item.obj["data"] == target_secret_item.obj.get("data", {})
and source_secret_item.obj.get("data", {}) == target_secret_item.obj.get("data", {})
and source_secret_labels == target_secret_labels
):
return
Expand Down

0 comments on commit 50ea7a6

Please sign in to comment.