ashb commented on code in PR #47760:
URL: https://github.com/apache/airflow/pull/47760#discussion_r2003695052


##########
airflow/ui/src/mocks/handlers/log.ts:
##########
@@ -21,7 +21,7 @@
 import { http, HttpResponse, type HttpHandler } from "msw";
 
 export const handlers: Array<HttpHandler> = [
-  
http.get("/public/dags/log_grouping/dagRuns/manual__2025-02-18T12:19/taskInstances/generate/-1",
 () =>
+  
http.get("/api/v2/dags/log_grouping/dagRuns/manual__2025-02-18T12:19/taskInstances/generate/-1",
 () =>

Review Comment:
   @pierrejeambrun Is it possible to configure the global http client with the 
`/api/v2` prefix so that each of these just becomes
   
   ```suggestion
     
http.get("/dags/log_grouping/dagRuns/manual__2025-02-18T12:19/taskInstances/generate/-1",
 () =>
   ```
   
   WDYT? Worth it?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to