Return-Path: X-Original-To: apmail-qpid-commits-archive@www.apache.org Delivered-To: apmail-qpid-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 67EEC188F7 for ; Tue, 4 Aug 2015 20:25:15 +0000 (UTC) Received: (qmail 28966 invoked by uid 500); 4 Aug 2015 20:25:15 -0000 Delivered-To: apmail-qpid-commits-archive@qpid.apache.org Received: (qmail 28935 invoked by uid 500); 4 Aug 2015 20:25:15 -0000 Mailing-List: contact commits-help@qpid.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@qpid.apache.org Delivered-To: mailing list commits@qpid.apache.org Received: (qmail 28926 invoked by uid 99); 4 Aug 2015 20:25:14 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Aug 2015 20:25:14 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C5431E35C5; Tue, 4 Aug 2015 20:25:14 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gsim@apache.org To: commits@qpid.apache.org Message-Id: <8ee2ac3f34194481bd8928c43187c3b2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: qpid-proton git commit: NO-JIRA: ignore rather than skip unsupported method in jython tests Date: Tue, 4 Aug 2015 20:25:14 +0000 (UTC) Repository: qpid-proton Updated Branches: refs/heads/master 5a8c6e0b9 -> 9e7cb674c NO-JIRA: ignore rather than skip unsupported method in jython tests Project: http://git-wip-us.apache.org/repos/asf/qpid-proton/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-proton/commit/9e7cb674 Tree: http://git-wip-us.apache.org/repos/asf/qpid-proton/tree/9e7cb674 Diff: http://git-wip-us.apache.org/repos/asf/qpid-proton/diff/9e7cb674 Branch: refs/heads/master Commit: 9e7cb674cf239a51c765ed0ecba7f255dc429878 Parents: 5a8c6e0 Author: Gordon Sim Authored: Tue Aug 4 21:27:34 2015 +0100 Committer: Gordon Sim Committed: Tue Aug 4 21:27:34 2015 +0100 ---------------------------------------------------------------------- proton-j/src/main/resources/csasl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-proton/blob/9e7cb674/proton-j/src/main/resources/csasl.py ---------------------------------------------------------------------- diff --git a/proton-j/src/main/resources/csasl.py b/proton-j/src/main/resources/csasl.py index 67bcd2e..b540f82 100644 --- a/proton-j/src/main/resources/csasl.py +++ b/proton-j/src/main/resources/csasl.py @@ -82,7 +82,7 @@ def pn_sasl_allowed_mechs(sasl, mechs): sasl.setMechanisms(*mechs.split()) def pn_sasl_set_allow_insecure_mechs(sasl, insecure): - raise Skipped('Not supported in Proton-J') + pass def pn_sasl_done(sasl, outcome): sasl.done(SASL_OUTCOMES_P2J[outcome]) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org For additional commands, e-mail: commits-help@qpid.apache.org