We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e582e55 commit 60d7ccaCopy full SHA for 60d7cca
jupyter_server/serverapp.py
@@ -1968,10 +1968,9 @@ def init_event_logger(self):
1968
]
1969
for schema_id in schema_ids:
1970
# Get the schema path from the schema ID.
1971
- rel_schema_path = schema_id.lstrip(JUPYTER_SERVER_EVENTS_URI) + ".yaml"
+ rel_schema_path = schema_id.replace(JUPYTER_SERVER_EVENTS_URI + "/", "") + ".yaml"
1972
schema_path = DEFAULT_EVENTS_SCHEMA_PATH / rel_schema_path
1973
# Use this pathlib object to register the schema
1974
- # breakpoint()
1975
self.event_logger.register_event_schema(schema_path)
1976
1977
def init_webapp(self):
0 commit comments