diff --git a/mybinder/files/etc/jupyter/jupyter_notebook_config.py b/mybinder/files/etc/jupyter/jupyter_notebook_config.py index 92e4da4ce..141b03105 100644 --- a/mybinder/files/etc/jupyter/jupyter_notebook_config.py +++ b/mybinder/files/etc/jupyter/jupyter_notebook_config.py @@ -1,6 +1,5 @@ import notebook import os -import hashlib from distutils.version import LooseVersion as V @@ -20,14 +19,8 @@ repo_url = os.environ.get('BINDER_REPO_URL', '') -# Roll this out only for binder-example repos to gain experience -if repo_url: - # Need a simple way to generate a stable but unique value for every repo - # that we can then use to create a Jitsi meet URL - unique = hashlib.md5(repo_url.encode()).hexdigest() - jitsi_url = 'https://meet.jit.si/mybinder.org-%s#config.startWithVideoMuted=true&config.startWithAudioMuted=true&config.prejoinPageEnabled=true' % unique -else: - jitsi_url = '' +# Disable JITSI integration for now +jitsi_url = '' c.NotebookApp.jinja_template_vars.update({ 'binder_url': binder_launch_host+binder_request,