Skip to content

Commit

Permalink
Changed wait default to 25 mins.
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed May 28, 2020
1 parent 2f5be01 commit 03f68df
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .idea/namesilo-letsencrypt.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ certbot certonly --manual --email [email protected] \
-d *.example.com -d example.com
</pre>

Please note that NameSilo DNS propagation takes up to **15 minutes**. The scripts will wait **20 minutes** before completing, just to be safe.
Please note that NameSilo DNS propagation takes up to **15 minutes**. The scripts will wait **25 minutes** before completing, just to be safe.
1 change: 0 additions & 1 deletion authenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
def sleep(minutes):
if minutes < 16:
minutes = 16
print("Waiting", minutes, "minutes for DNS changes to complete...")
time.sleep(minutes * 60)


Expand Down
2 changes: 1 addition & 1 deletion config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Get your API Key from: https://www.namesilo.com/account_api.php
apikey = "YOUR_API_KEY"
# Minutes to wait for DNS changes to complete.
wait = 20
wait = 25

0 comments on commit 03f68df

Please sign in to comment.