Merge branch 'acme-directory' into revocation

This commit is contained in:
Jakub Warmuz
2015-09-09 20:45:57 +00:00
3 changed files with 3 additions and 5 deletions
+1 -1
View File
@@ -158,7 +158,7 @@ class Directory(jose.JSONDeSerializable):
try: try:
return self[name.replace('_', '-')] return self[name.replace('_', '-')]
except KeyError as error: except KeyError as error:
raise AttributeError(error.message) raise AttributeError(str(error))
def __getitem__(self, name): def __getitem__(self, name):
try: try:
+1 -3
View File
@@ -4,9 +4,7 @@
# instance (see ./boulder-start.sh). # instance (see ./boulder-start.sh).
# #
# Environment variables: # Environment variables:
# SERVER: Passed as "letsencrypt --server" argument. Boulder # SERVER: Passed as "letsencrypt --server" argument.
# monolithic defaults to :4000, AMQP defaults to :4300. This
# script defaults to monolithic.
# #
# Note: this script is called by Boulder integration test suite! # Note: this script is called by Boulder integration test suite!
+1 -1
View File
@@ -13,7 +13,7 @@ export root store_flags
letsencrypt_test () { letsencrypt_test () {
letsencrypt \ letsencrypt \
--server "${SERVER:-http://localhost:4000/acme/new-reg}" \ --server "${SERVER:-http://localhost:4000/directory}" \
--no-verify-ssl \ --no-verify-ssl \
--dvsni-port 5001 \ --dvsni-port 5001 \
--simple-http-port 5001 \ --simple-http-port 5001 \