Skip to content

Commit

Permalink
fix: correct default value of variable
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaircloth-splunk committed Aug 19, 2021
1 parent 5d69d5d commit a0e55ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/etc/conf.d/sc4slib/source_syslog/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
else:
use_tls = False

if os.getenv(f"SC4S_RUNTIME_ENV", "k8s").lower() == "k8s":
if os.getenv(f"SC4S_RUNTIME_ENV", "unknown").lower() == "k8s":
cert_file="tls.crt"
key_file="tls.key"
else:
Expand Down

0 comments on commit a0e55ea

Please sign in to comment.