You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pytest_splunk_addon/splunk.py
+4-6Lines changed: 4 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -49,13 +49,11 @@ def pytest_addoption(parser):
49
49
"""
50
50
group=parser.getgroup("splunk-addon")
51
51
group.addoption(
52
-
"--ingest-with-uuid",
53
-
action="store",
52
+
"--use-uuid",
53
+
action="store_true",
54
54
dest="ingest_with_uuid",
55
-
default="false",
56
-
help=(
57
-
'Use generated UUID for ingesting and searching events. Setting this parameter to "true" will lead to matching events in search by the ID and not by escaped _raw. Default is "false".'
58
-
),
55
+
default=False,
56
+
help="Use generated UUID for ingesting and searching events. Setting this flag will lead to matching events in search by the ID and not by escaped _raw.",
0 commit comments