Merge pull request #354 from dpieski/patch-3

Use es-index WebOption when calling sist2.web
This commit is contained in:
2023-04-27 14:46:59 -04:00
committed by GitHub

View File

@@ -46,7 +46,7 @@ class WebOptions(BaseModel):
super().__init__(**kwargs) super().__init__(**kwargs)
def args(self): 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}"] f"--tagline={self.tagline}", f"--lang={self.lang}"]
if self.auth0_audience: if self.auth0_audience: