I created a fresh, unchanged shiny-hello-world app in Databricks. App status was running and deployment seemed to work, but navigating to the app gave me a 502 error. Checking app logs showed:
TypeError: Expected a fully tagified value, but a child .tagify() returned an un-tagified Tag at index 0.
Issue appears to be an incompatibility between shiny~=1.1.0 and a silent htmltools==0.7.0 dependency that occurs. Looks related to posit-dev/py-shiny#2244 and potential fixes are increase shiny dependency to shiny>=1.2.0 or hold back htmltools<=0.7.0 to adjust.
I created a fresh, unchanged shiny-hello-world app in Databricks. App status was running and deployment seemed to work, but navigating to the app gave me a 502 error. Checking app logs showed:
Issue appears to be an incompatibility between
shiny~=1.1.0and a silenthtmltools==0.7.0dependency that occurs. Looks related to posit-dev/py-shiny#2244 and potential fixes are increase shiny dependency toshiny>=1.2.0or hold backhtmltools<=0.7.0to adjust.app-templates/shiny-hello-world-app/requirements.txt
Line 3 in ab30424