Removed no_simple_http_tls

This commit is contained in:
Brad Warren
2015-10-19 12:26:59 -07:00
parent 3aad546898
commit 98c74ddd14
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -72,8 +72,7 @@ to serve all files under specified web root ({0})."""
return os.path.join(self.full_root, achall.chall.encode("token"))
def _perform_single(self, achall):
response, validation = achall.gen_response_and_validation(
tls=(not self.config.no_simple_http_tls))
response, validation = achall.gen_response_and_validation(tls=False)
path = self._path_for_achall(achall)
logger.debug("Attempting to save validation to %s", path)
with open(path, "w") as validation_file:
-1
View File
@@ -48,7 +48,6 @@ class BaseRenewableCertTest(unittest.TestCase):
config_dir=self.tempdir,
work_dir=self.tempdir,
logs_dir=self.tempdir,
no_simple_http_tls=False,
)
)