I have been running bokeh server and having flask display the bokeh apps on the same machine (vm) for a while. This is my script inside flask per bokeh documentation:
script = server_document(url="http://www.mysite.com/apps/app1", arguments={'user': user_name, 'project':project})
return render_template("page.html", user_name=user_name, project=projectj, script=script, template="Flask")
Since upgrading to bokeh 2.2.3, the flask page is drawing up blank as it seems it is unable to call or embed the bokeh app.
I tried to downgrade the bokeh version to 2.0.0 and it works again! Here are the other versions of interest:
Python 3.7.6
Flask 1.1.2
Anybody else having the same issue?