Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Bug fix: Remove unnecessary double quotation marks.
  • Loading branch information
adorobis authored Jan 24, 2023
commit 394e4a7c35caf57253c8ec1fd030549336b39549
2 changes: 1 addition & 1 deletion deploy_freenas.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@
cert_ids_expired = set()
for cert_data in cert_list:
if set(cert_data['san']) == set(new_cert_data['san']):
if cert_data['name'].startswith("CERT_BASE_NAME"):
if cert_data['name'].startswith(CERT_BASE_NAME):
cert_ids_same_san.add(cert_data['id'])

if not cert_data['cert_type_CSR']:
Expand Down