File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -2525,7 +2525,6 @@ int main(int argc, char ** argv) {
25252525 " /health" ,
25262526 " /models" ,
25272527 " /v1/models" ,
2528- " /props" ,
25292528 };
25302529
25312530 // If API key is not set, skip validation
@@ -3277,7 +3276,7 @@ int main(int argc, char ** argv) {
32773276 // register API routes
32783277 svr->Get (" /health" , handle_health); // public endpoint (no API key check)
32793278 svr->Get (" /metrics" , handle_metrics);
3280- svr->Get (" /props" , handle_props); // public endpoint (no API key check)
3279+ svr->Get (" /props" , handle_props);
32813280 svr->Post (" /props" , handle_props_change);
32823281 svr->Get (" /models" , handle_models); // public endpoint (no API key check)
32833282 svr->Get (" /v1/models" , handle_models); // public endpoint (no API key check)
You can’t perform that action at this time.
0 commit comments