Skip to content

Commit f9bcd7e

Browse files
authored
Merge pull request splunk#316 from splunk/fix_savedsearches_path
Fix savedsearches path issue
2 parents d4d7d9d + c9dfa84 commit f9bcd7e

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)