You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@superset.apache.org by "LawrenceWarren (via GitHub)" <gi...@apache.org> on 2023/04/19 10:45:09 UTC

[GitHub] [superset] LawrenceWarren commented on issue #22149: authlib already installed, but No module named 'authlib'

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: notifications-unsubscribe@superset.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscribe@superset.apache.org
For additional commands, e-mail: notifications-help@superset.apache.org