jerrypeng commented on a change in pull request #3241: add backwards
compatiblity to 2.2 for function admin API
URL: https://github.com/apache/pulsar/pull/3241#discussion_r243723525
##########
File path:
pulsar-broker/src/main/java/org/apache/pulsar/broker/admin/v1/Functions.java
##########
@@ -19,10 +19,17 @@
package org.apache.pulsar.broker.admin.v1;
import io.swagger.annotations.Api;
+
+import javax.ws.rs.Consumes;
import javax.ws.rs.Path;
+import javax.ws.rs.Produces;
+import javax.ws.rs.core.MediaType;
+
import org.apache.pulsar.broker.admin.impl.FunctionsBase;
@Path("/functions")
@Api(value = "/functions", description = "Functions admin apis", tags =
"functions", hidden = true)
-public class Functions extends FunctionsBase {
+@Produces(MediaType.APPLICATION_JSON)
+@Consumes(MediaType.APPLICATION_JSON)
+public class Functions extends org.apache.pulsar.broker.admin.v2.Functions{
Review comment:
need to do this because the 2.2 admin client hits the v1 endpoints i.e.
/admin/functions
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services