Remove http01_port magic

This commit is contained in:
Brad Warren
2015-11-20 16:09:39 -08:00
parent 6eb6cf5a77
commit bb6736f36c
4 changed files with 4 additions and 16 deletions
-9
View File
@@ -5,8 +5,6 @@ import re
import zope.interface
from acme import challenges
from letsencrypt import constants
from letsencrypt import errors
from letsencrypt import interfaces
@@ -80,13 +78,6 @@ class NamespaceConfig(object):
return os.path.join(
self.namespace.work_dir, constants.TEMP_CHECKPOINT_DIR)
@property
def http01_port(self): # pylint: disable=missing-docstring
if self.namespace.http01_port is not None:
return self.namespace.http01_port
else:
return challenges.HTTP01Response.PORT
class RenewerConfiguration(object):
"""Configuration wrapper for renewer."""