mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
cosmetics
This commit is contained in:
parent
ea7916e0fa
commit
515a5c9d18
2 changed files with 2 additions and 3 deletions
|
@ -162,7 +162,7 @@ INITIAL_CONFIG = OrderedDict([
|
||||||
"help": "path where collections are stored",
|
"help": "path where collections are stored",
|
||||||
"type": str}),
|
"type": str}),
|
||||||
("max_sync_token_age", {
|
("max_sync_token_age", {
|
||||||
"value": 2592000, # 30 days
|
"value": "2592000", # 30 days
|
||||||
"help": "delete sync token that are older",
|
"help": "delete sync token that are older",
|
||||||
"type": int}),
|
"type": int}),
|
||||||
("hook", {
|
("hook", {
|
||||||
|
|
|
@ -107,9 +107,8 @@ class TestBaseServerRequests:
|
||||||
status, _, _ = self.request("GET", "/")
|
status, _, _ = self.request("GET", "/")
|
||||||
assert status == 302
|
assert status == 302
|
||||||
|
|
||||||
|
@pytest.mark.skipif(not server.HAS_IPV6, reason="IPv6 not supported")
|
||||||
def test_ipv6(self):
|
def test_ipv6(self):
|
||||||
if not server.HAS_IPV6:
|
|
||||||
pytest.skip("IPv6 not supported")
|
|
||||||
with socket.socket(socket.AF_INET6, socket.SOCK_STREAM) as sock:
|
with socket.socket(socket.AF_INET6, socket.SOCK_STREAM) as sock:
|
||||||
sock.setsockopt(server.IPPROTO_IPV6, server.IPV6_V6ONLY, 1)
|
sock.setsockopt(server.IPPROTO_IPV6, server.IPV6_V6ONLY, 1)
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue