LawrenceWarren commented on issue #22149:
URL: https://github.com/apache/superset/issues/22149#issuecomment-1514518500
Similar to @stevehenderson, I solved this by adding to
`supersetWorker.command`. From:
```yaml
command:
- "/bin/sh"
- "-c"
- ". {{ .Values.configMountPath }}/superset_bootstrap.sh; celery
--app=superset.tasks.celery_app:app worker"
```
to:
```yaml
command:
- "/bin/sh"
- "-c"
- ". {{ .Values.configMountPath }}/superset_bootstrap.sh; pip install
authlib==1.2.0; celery --app=superset.tasks.celery_app:app worker"
```
This is because appending to the `bootstrapScript` didn't seem to run
because this step, somehow.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]