YARN-1719. Fixed the root path related Jersey warnings produced in ATSWebServices. Contributed by Billie Rinaldi.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1567498 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
53fed66d91
commit
1b5254a4de
|
@ -248,6 +248,9 @@ Release 2.4.0 - UNRELEASED
|
||||||
|
|
||||||
YARN=1697. NodeManager reports negative running containers (Sandy Ryza)
|
YARN=1697. NodeManager reports negative running containers (Sandy Ryza)
|
||||||
|
|
||||||
|
YARN-1719. Fixed the root path related Jersey warnings produced in
|
||||||
|
ATSWebServices. (Billie Rinaldi via zjshen)
|
||||||
|
|
||||||
Release 2.3.1 - UNRELEASED
|
Release 2.3.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -107,7 +107,6 @@ public class ATSWebServices {
|
||||||
* Return the description of the application timeline web services.
|
* Return the description of the application timeline web services.
|
||||||
*/
|
*/
|
||||||
@GET
|
@GET
|
||||||
@Path("/")
|
|
||||||
@Produces({ MediaType.APPLICATION_JSON /* , MediaType.APPLICATION_XML */})
|
@Produces({ MediaType.APPLICATION_JSON /* , MediaType.APPLICATION_XML */})
|
||||||
public AboutInfo about(
|
public AboutInfo about(
|
||||||
@Context HttpServletRequest req,
|
@Context HttpServletRequest req,
|
||||||
|
@ -235,7 +234,6 @@ public class ATSWebServices {
|
||||||
* that happen during storing.
|
* that happen during storing.
|
||||||
*/
|
*/
|
||||||
@POST
|
@POST
|
||||||
@Path("/")
|
|
||||||
@Consumes({ MediaType.APPLICATION_JSON /* , MediaType.APPLICATION_XML */})
|
@Consumes({ MediaType.APPLICATION_JSON /* , MediaType.APPLICATION_XML */})
|
||||||
public ATSPutErrors postEntities(
|
public ATSPutErrors postEntities(
|
||||||
@Context HttpServletRequest req,
|
@Context HttpServletRequest req,
|
||||||
|
|
Loading…
Reference in New Issue