Skip to content

Commit

Permalink
Merge pull request #1027 from letsencrypt/no_no_simple_http_tls
Browse files Browse the repository at this point in the history
Removed no_simple_http_tls
  • Loading branch information
bmw committed Oct 19, 2015
2 parents 3aad546 + 98c74dd commit 3885a40
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
3 changes: 1 addition & 2 deletions letsencrypt/plugins/webroot.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,7 @@ def _path_for_achall(self, achall):
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:
Expand Down
1 change: 0 additions & 1 deletion letsencrypt/tests/renewer_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ def setUp(self):
config_dir=self.tempdir,
work_dir=self.tempdir,
logs_dir=self.tempdir,
no_simple_http_tls=False,
)
)

Expand Down

0 comments on commit 3885a40

Please sign in to comment.