Skip to content
This repository has been archived by the owner on Dec 17, 2021. It is now read-only.

Commit

Permalink
fix(config): config path correction
Browse files Browse the repository at this point in the history
  • Loading branch information
rfaircloth-splunk committed Feb 3, 2021
1 parent 2846259 commit 84d4fb3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion splunk_connect_for_snmp_traps/snmp_trap_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ def main():
default="info",
help="Provide logging level. Example --loglevel debug, default=warning",
)
parser.add_argument("-c", "--config", default="config.yaml", help="Config File")
parser.add_argument(
"-c", "--config", default="/work/config.yaml", help="Config File"
)
args = parser.parse_args()

log_level = args.loglevel.upper()
Expand Down

0 comments on commit 84d4fb3

Please sign in to comment.