Skip to content

Commit

Permalink
HC-487: Test out and deploy locally a Elasticsearch service in cluste…
Browse files Browse the repository at this point in the history
…red mode (multi-node) (#57)

* SSDS-3497: Support 3-node ES cluster mode

* HC-487: Bump version
  • Loading branch information
drewm-swe authored Sep 11, 2023
1 parent 5478748 commit e74e90d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion hysds_commons/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
from __future__ import division
from __future__ import absolute_import

__version__ = "1.0.15"
__version__ = "1.0.16"
__description__ = "Common HySDS Functions, Utilities, Etc."
__url__ = "https://github.jpl.nasa.gov/hysds-org/hysds_commons"
2 changes: 1 addition & 1 deletion hysds_commons/elasticsearch_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

class ElasticsearchUtility:
def __init__(self, es_url, logger=None, **kwargs):
self.es = elasticsearch.Elasticsearch(hosts=[es_url], **kwargs)
self.es = elasticsearch.Elasticsearch(hosts=es_url if type(es_url) == list else [es_url], **kwargs)
self.es_url = es_url
self.logger = logger
self.version = None
Expand Down

0 comments on commit e74e90d

Please sign in to comment.