]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
Increase timeout for rest calls in CI
authorNick Porter <nick@portercomputing.co.uk>
Tue, 10 Sep 2024 10:15:28 +0000 (11:15 +0100)
committerNick Porter <nick@portercomputing.co.uk>
Tue, 10 Sep 2024 10:15:28 +0000 (11:15 +0100)
Running with sanitizers enabled can seriously slow down processing,
resulting in spurious timeouts.

src/tests/modules/rest/module.conf

index e5113f68bb6d711c4f379ce4819b368c622573a2..0bc9ae020ed3a7b06a0980e0eee6e3f27e526b18 100644 (file)
@@ -38,6 +38,7 @@ rest {
                        method = "GET"
                }
                tls = ${..tls}
+               timeout = 10
        }
 
        authenticate {
@@ -51,6 +52,7 @@ rest {
                }
 
                tls = ${..tls}
+               timeout = 10
        }
 
        accounting {
@@ -61,6 +63,7 @@ rest {
                        data = "{\"NAS\": \"%{NAS-IP-Address}\", \"Password\": \"%{User-Password}\", \"Verify\": true}"
                }
                tls = ${..tls}
+               timeout = 10
        }
 }