Skip to content

Commit faee488

Browse files
committed
Use allow_unauthenticated in FilesRedirectHandler for now
1 parent 4cbb504 commit faee488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_server/base/handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ async def redirect_to_files(self: Any, path: str) -> None:
11301130
self.log.debug("Redirecting %s to %s", self.request.path, url)
11311131
self.redirect(url)
11321132

1133-
@web.authenticated
1133+
@allow_unauthenticated
11341134
async def get(self, path: str = "") -> None:
11351135
return await self.redirect_to_files(self, path)
11361136

0 commit comments

Comments
 (0)