Skip to content
Snippets Groups Projects
  • gmantele's avatar
    81c567c8
    [UWS] Fix HTTP request for job destruction. · 81c567c8
    gmantele authored
    Until now, it was possible to destroy the job by posting ACTION=DELETE
    with a URL like below:
    
        {root-uws}/{job-list}/{job-id}/foo/bar
    
    That is completely wrong. The correct URL for this action must always be:
    
        {root-uws}/{job-list}/{job-id}
    
    This commit fixes this error in UWSServlet and UWSService.
    81c567c8
    History
    [UWS] Fix HTTP request for job destruction.
    gmantele authored
    Until now, it was possible to destroy the job by posting ACTION=DELETE
    with a URL like below:
    
        {root-uws}/{job-list}/{job-id}/foo/bar
    
    That is completely wrong. The correct URL for this action must always be:
    
        {root-uws}/{job-list}/{job-id}
    
    This commit fixes this error in UWSServlet and UWSService.