Skip to content

Commit

Permalink
Merge pull request #608 from fomars/release
Browse files Browse the repository at this point in the history
PyOpenSSL dependency, fix cfg unpacking
  • Loading branch information
fomars authored Jun 4, 2018
2 parents 2b3ab38 + 0843207 commit f06b872
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
'pandas>=0.18.0', 'numpy>=1.12.1', 'future>=0.16.0',
'pip>=8.1.2',
'pyyaml>=3.12', 'cerberus==1.2', 'influxdb>=5.0.0',
'netort>=0.0.11'
'netort>=0.0.11', 'pyopenssl>=17.5.0'
],
setup_requires=[
'pytest-runner', 'flake8',
Expand Down
2 changes: 1 addition & 1 deletion yandextank/core/consoleworker.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def patch_ini_config_with_monitoring(ini_config, mon_section_name):
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 []
other_opts = [other_opts] if other_opts else []
config_files = config_files if len(config_files) > 0 else [DEFAULT_CONFIG]
if no_rc:
configs = [load_cfg(cfg) for cfg in config_files] +\
Expand Down

0 comments on commit f06b872

Please sign in to comment.