Use es-index WebOption when calling sist2.web

This commit is contained in:
Andrew 2023-04-27 12:57:52 -05:00 committed by GitHub
parent 35cfd3b3b1
commit ac942947e4
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: