Skip to content

Commit 7a255cb

Browse files
committed
Move internal routes to a more self-describing location
1 parent c1c3abd commit 7a255cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/server_axum.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ pub(crate) async fn serve(config: Config) {
100100
.route("/metrics", get(metrics))
101101
.route("/websocket", get(websocket))
102102
.route("/nowebsocket", post(nowebsocket))
103-
.route("/whynowebsocket", get(whynowebsocket))
103+
.route("/internal/debug/whynowebsocket", get(whynowebsocket))
104104
.layer(Extension(factory))
105105
.layer(Extension(db_handle))
106106
.layer(Extension(Arc::new(SandboxCache::default())))

0 commit comments

Comments
 (0)