Skip to content

Commit

Permalink
[Bug] [DaC] Actions Connector Defaults to None (elastic#4376)
Browse files Browse the repository at this point in the history
* Add explicit calls to pass directories

* Bump Version
  • Loading branch information
eric-forte-elastic authored Jan 15, 2025
1 parent 74f11db commit cc00963
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions detection_rules/kbwrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def kibana_export_rules(ctx: click.Context, directory: Path, action_connectors_d
exceptions_containers,
exceptions_items,
exception_list_rule_table,
exceptions_directory,
exceptions_directory if exceptions_directory else None,
save_toml=False,
skip_errors=skip_errors,
verbose=False,
Expand All @@ -297,7 +297,7 @@ def kibana_export_rules(ctx: click.Context, directory: Path, action_connectors_d
action_connectors, ac_output, ac_errors = build_action_connector_objects(
action_connector_results,
action_connector_rule_table,
action_connectors_directory=None,
action_connectors_directory=action_connectors_directory if action_connectors_directory else None,
save_toml=False,
skip_errors=skip_errors,
verbose=False,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "detection_rules"
version = "0.3.15"
version = "0.3.16"
description = "Detection Rules is the home for rules used by Elastic Security. This repository is used for the development, maintenance, testing, validation, and release of rules for Elastic Security’s Detection Engine."
readme = "README.md"
requires-python = ">=3.12"
Expand Down

0 comments on commit cc00963

Please sign in to comment.