Skip to content
This repository was archived by the owner on Jun 3, 2023. It is now read-only.

Commit aa15a3f

Browse files
committed
Set DNS TTL 600 -> 30, update dependencies
1 parent a3504ed commit aa15a3f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎app/server_admin/dns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def ips_from_record(record: dict) -> Set[IPv4Address]:
102102
return ips
103103

104104
def _a_record(self, name: str, ips: Set[IPv4Address],
105-
action: str, ttl: int = 600) -> None:
105+
action: str, ttl: int = 30) -> None:
106106
change_batch = {
107107
"Comment": "add {} -> {}"
108108
.format(name, ", ".join([ip.exploded for ip in ips])),

‎requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
flask == 1.1.1
2-
boto3 == 1.9.188
2+
boto3 == 1.9.210
33
gunicorn == 19.9.0

‎requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
mypy >= 0.720
22
pylint >= 2.3.1
3-
python-dotenv >= 0.10.1
3+
python-dotenv >= 0.10.3

0 commit comments

Comments
 (0)