Skip to content

Commit

Permalink
Fixed logic
Browse files Browse the repository at this point in the history
Signed-off-by: Laurent Rochette <[email protected]>
  • Loading branch information
lrochette committed Nov 3, 2023
1 parent f694358 commit 1372b6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion incubating/argo-cd-sync/argocd_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
LOG_LEVEL = os.getenv('LOG_LEVEL', "info")

# Check the certificate or not accessing the API endpoint
VERIFY = True if os.getenv('INSECURE', "False").lower() == "true" else False
VERIFY = True if os.getenv('INSECURE', "False").lower() == "false" else False
CA_BUNDLE = os.getenv('CA_BUNDLE')

if CA_BUNDLE != None:
Expand Down

0 comments on commit 1372b6a

Please sign in to comment.