after spring 3.0 upgrade, this url pattern started returning a 404 error
/app/admin/scheduler/*/*/result/*
/app/home/project/*/scheduled_job/*/result/*
the request are not getting to the SchedulerController at all.
sames goes for when you try to download a user file
Another one that fails
#121 in ProjectController from
107 URL_PROJECT_WORKSPACE = "/app/home/project";
...
121 MAPPING_PROJECT_RUN = URL_PROJECT_WORKSPACE + "/*/run/**";
to
121 MAPPING_PROJECT_RUN = URL_PROJECT_WORKSPACE + "/*/run/*"; (temporary workaround, not checked in).
Based on Kin-Hong's email, once the /app/** is removed, this should start working as well.
Another one that fails
#121 in ProjectController from
107 URL_PROJECT_WORKSPACE = "/app/home/project";
...
121 MAPPING_PROJECT_RUN = URL_PROJECT_WORKSPACE + "/*/run/**";
to
121 MAPPING_PROJECT_RUN = URL_PROJECT_WORKSPACE + "/*/run/*"; (temporary workaround, not checked in).
Based on Kin-Hong's email, once the /app/** is removed, this should start working as well.
removed RequestMapping /app/** from HomeController as recommened by KinHong.
removed RequestMapping /app/** from HomeController as recommened by KinHong.
verified in Scheduled Job History and User File import. The Workspace run used to work for me before- if you find again please reopen
verified in Scheduled Job History and User File import. The Workspace run used to work for me before- if you find again please reopen
Issue #1728 |
Closed |
Fixed |
Resolved |
Completion |
No due date |
No fixed build |
No time estimate |
sames goes for when you try to download a user file