diff options
| author | KunoiSayami <[email protected]> | 2021-07-22 12:14:04 +0800 |
|---|---|---|
| committer | KunoiSayami <[email protected]> | 2021-07-22 12:14:04 +0800 |
| commit | 84a915854ce73dadbed40fd13cea6044e7776ae9 (patch) | |
| tree | 84810fe81a3546af5aff0bdc044d03ce4bf9a02c /src/main.rs | |
| parent | 840a5e9e6f077d0c7cf42d6e8a7089f41fb1ab0e (diff) | |
feat(test): Add compile time wait commit time option
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 46f088f..f960422 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,6 +60,11 @@ impl<R: BufRead, W: Write> IOModule<R, W> { if let Err(ref e) = ret { eprintln!("{:?}", e); + #[cfg(test)] + eprintln!( + "If database locked error occurs frequently, \ + please use environment DISK_WAIT_TIME to specify longer time." + ); log::error!("{:?}", e) } @@ -89,7 +94,10 @@ impl<R: BufRead, W: Write> IOModule<R, W> { writeln!( &mut self.writer, "Set-Cookie: cgit_auth={}; Domain={}; Max-Age={}; HttpOnly{}", - cookie_value, domain, cfg.cookie_ttl * 10, cookie_suffix + cookie_value, + domain, + cfg.cookie_ttl * 10, + cookie_suffix )?; } else { writeln!(&mut self.writer, "Status: 403 Forbidden")?; |
