Merge pull request #354 from dpieski/patch-3

Use es-index WebOption when calling sist2.web
This commit is contained in:
simon987 2023-04-27 14:46:59 -04:00 committed by GitHub
commit 63027dd5ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,7 +46,7 @@ class WebOptions(BaseModel):
super().__init__(**kwargs)
def args(self):
args = ["web", f"--es-url={self.es_url}", f"--bind={self.bind}",
args = ["web", f"--es-url={self.es_url}", f"--es-index={self.es_index}", f"--bind={self.bind}",
f"--tagline={self.tagline}", f"--lang={self.lang}"]
if self.auth0_audience: