Skip to content

Commit 6bcb875

Browse files
committed
Fix path to fetch a saved
search by name. Without fixing this path, integration testing fails to find the search and errors out.
1 parent 0dad956 commit 6bcb875

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contentctl/objects/correlation_search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ def splunk_path(self) -> str:
264264
:returns: the search path
265265
:rtype: str
266266
"""
267-
return f"/saved/searches/{self.name}"
267+
return f"saved/searches/{self.name}"
268268

269269
@computed_field
270270
@cached_property

0 commit comments

Comments
 (0)