From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from valinux.co.jp (vagw.valinux.co.jp [210.128.90.14]) by dpdk.org (Postfix) with ESMTP id 8DC5C5F0D for ; Fri, 5 Oct 2018 05:58:01 +0200 (CEST) Received: by valinux.co.jp (Postfix, from userid 1000) id 91DE7240CE0; Fri, 5 Oct 2018 12:57:59 +0900 (JST) From: oda@valinux.co.jp To: spp@dpdk.org, ferruh.yigit@intel.com, ogawa.yasufumi@lab.ntt.co.jp Date: Fri, 5 Oct 2018 12:57:57 +0900 Message-Id: <20181005035757.23122-15-oda@valinux.co.jp> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20181005035757.23122-1-oda@valinux.co.jp> References: <20180913082544.2D36.277DD91C@valinux.co.jp> <20181005035757.23122-1-oda@valinux.co.jp> Subject: [spp] [PATCH v4 14/14] spp-ctl: fix incorrect URL X-BeenThere: spp@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Soft Patch Panel List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 05 Oct 2018 03:58:02 -0000 From: Itsuro Oda This patch fixes an incorrect URL. Signed-off-by: Itsuro Oda --- src/spp-ctl/spp_webapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/spp-ctl/spp_webapi.py b/src/spp-ctl/spp_webapi.py index ee47f2f..ddf6513 100644 --- a/src/spp-ctl/spp_webapi.py +++ b/src/spp-ctl/spp_webapi.py @@ -171,7 +171,7 @@ class V1VFHandler(BaseHandler): callback=self.vf_comp_start) self.route('//components/', 'DELETE', callback=self.vf_comp_stop) - self.route('//components/', 'PUT', + self.route('//components//ports', 'PUT', callback=self.vf_comp_port) self.route('//classifier_table', 'PUT', callback=self.vf_classifier) -- 2.17.1