Skip to content

Commit 2586c1e

Browse files
author
Jim Robinson
committed
Fix issue with secret cleanup
1 parent 9ef4c2a commit 2586c1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

croudtech_bootstrap_app/bootstrap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def parse_value(self, value):
232232
return str(parsed_value).strip()
233233

234234
def cleanup_secrets(self):
235-
local_secret_keys = self.local_secrets.keys()
235+
local_secret_keys = self.get_flattened_secrets().items()
236236
remote_secret_keys = self.remote_secret_records.keys()
237237
orphaned_secrets = [
238238
item for item in remote_secret_keys if item not in local_secret_keys

0 commit comments

Comments
 (0)