Skip to content

Commit

Permalink
Merge pull request #604 from fomars/release
Browse files Browse the repository at this point in the history
fix backwards tankapi compatibility
  • Loading branch information
fomars authored May 30, 2018
2 parents 117bd9f + 8321db0 commit 2b3ab38
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion yandextank/core/consoleworker.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ def patch_ini_config_with_monitoring(ini_config, mon_section_name):
raise ex


def load_tank_core(config_files, cmd_options, no_rc, depr_options, other_opts, patches):
def load_tank_core(config_files, cmd_options, no_rc, depr_options, other_opts, patches=None):
if patches is None:
patches = []
other_opts = list(other_opts) if other_opts else []
config_files = config_files if len(config_files) > 0 else [DEFAULT_CONFIG]
if no_rc:
Expand Down

0 comments on commit 2b3ab38

Please sign in to comment.