fix(git-gate): shorten daemon client timeout
test / unit (pull_request) Successful in 30s
test / integration (pull_request) Successful in 42s

This commit is contained in:
2026-05-29 22:02:17 -04:00
parent de2267d1b4
commit 7bffaa791c
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -170,8 +170,8 @@ class TestEntrypointRender(unittest.TestCase):
# Daemon line is what keeps PID 1 alive.
self.assertIn("exec git daemon", script)
self.assertIn("--enable=receive-pack", script)
self.assertIn("--timeout=60", script)
self.assertIn("--init-timeout=60", script)
self.assertIn("--timeout=15", script)
self.assertIn("--init-timeout=15", script)
self.assertIn("--base-path=/git", script)
# The access-hook is what makes fetch a mirror operation
# against the upstream (PRD 0008 v1.1).