Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove undefined parameter from docstring #269

Merged
merged 1 commit into from
Jun 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions elastalert/elastalert.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,7 @@ class ElastAlerter(object):
""" The main ElastAlert runner. This class holds all state about active rules,
controls when queries are run, and passes information between rules and alerts.

:param args: An argparse arguments instance. Should contain debug and start

:param conf: The configuration dictionary. At the top level, this
contains global options, and under 'rules', contains all state relating
to rules and alerts. In each rule in conf['rules'], the RuleType and Alerter
instances live under 'type' and 'alerts', respectively. The conf dictionary
should not be passed directly from a configuration file, but must be populated
by config.py:load_rules instead. """
:param args: An argparse arguments instance. Should contain debug and start"""

thread_data = threading.local()

Expand Down