Skip to content

Commit

Permalink
Update main.go (#23)
Browse files Browse the repository at this point in the history
Default ElasticVerifySSL to false as command line flag seems only to be able to set option to true.
  • Loading branch information
herrbpl authored Mar 17, 2024
1 parent 909154d commit 25dfc8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var Version string
func main() {
conf := flags.Flags{
ElasticURL: "http://localhost:9200",
ElasticVerifySSL: true,
ElasticVerifySSL: false,
Index: "logs-*",
Query: "*",
OutFormat: flags.FormatCSV,
Expand Down

0 comments on commit 25dfc8c

Please sign in to comment.