smalyshev opened a new issue, #27881:
URL: https://github.com/apache/superset/issues/27881

   ### Bug description
   
   In `common_bootstrap_payload` the code uses this: 
   ```
           **cached_common_bootstrap_data(utils.get_user_id(), get_locale()),
   ```
   
   `cached_common_bootstrap_data` is defined as: 
   ```
   def cached_common_bootstrap_data(  # pylint: disable=unused-argument
       user_id: int | None, locale: str
   ) -> dict[str, Any]:
   ```
   
   However, `get_locale` is defined in `flask_babel` as: 
   ```
   def get_locale():
       """Returns the locale that should be used for this request as
       `babel.Locale` object.  This returns `None` if used outside of
       a request.
       """
   ```
   
   So, the function expects string, but is set an object instead. This probably 
should be fixed to either have `get_locale` result be converted to string 
explicitly, or make `cached_common_bootstrap_data` accept correct object. 
   
   ### How to reproduce the bug
   
   See the code above
   
   ### Screenshots/recordings
   
   _No response_
   
   ### Superset version
   
   3.0.4
   
   ### Python version
   
   3.10
   
   ### Node version
   
   16
   
   ### Browser
   
   Not applicable
   
   ### Additional context
   
   _No response_
   
   ### Checklist
   
   - [X] I have searched Superset docs and Slack and didn't find a solution to 
my problem.
   - [X] I have searched the GitHub issue tracker and didn't find a similar bug 
report.
   - [X] I have checked Superset's logs for errors and if I found a relevant 
Python stacktrace, I included it here as text in the "additional context" 
section.


-- 
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-unsubscr...@superset.apache.org.apache.org

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


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

Reply via email to