From 206aed434d46b91759f189abcb5456f22755ac5c Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Mon, 25 Apr 2011 22:47:07 +0300 Subject: [PATCH 3/4] constants.py: add SERVICE_BUSY --- tests/twisted/constants.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/tests/twisted/constants.py b/tests/twisted/constants.py index 07c0a33..11da926 100644 --- a/tests/twisted/constants.py +++ b/tests/twisted/constants.py @@ -144,6 +144,7 @@ CONNECTION_LOST = ERROR + '.ConnectionLost' CANCELLED = ERROR + '.Cancelled' DISCONNECTED = ERROR + '.Disconnected' REGISTRATION_EXISTS = ERROR + '.RegistrationExists' +SERVICE_BUSY = ERROR + '.ServiceBusy' AUTHENTICATION_FAILED = ERROR + '.AuthenticationFailed' CONNECTION_REPLACED = ERROR + '.ConnectionReplaced' ALREADY_CONNECTED = ERROR + '.AlreadyConnected' -- 1.7.4.4