def __init__()

in granule_ingester/granule_ingester/writers/ElasticsearchStore.py [0:0]


    def __init__(self, elastic_url: str, username: str, password: str, index: str):
        super().__init__()
        self.TABLE_NAME = 'sea_surface_temp'
        self.iso = '%Y-%m-%dT%H:%M:%SZ'
        self.elastic_url = elastic_url
        self.username = username
        self.password = password
        self.index = index
        self.geo_precision = 3
        # self.collection = 'nexustiles'
        self.log = logging.getLogger(__name__)
        self.log.setLevel(logging.DEBUG)
        self.elastic = None