diff options
author | Johan Sørensen <johan@johansorensen.com> | 2009-04-20 09:03:33 +0200 |
---|---|---|
committer | Johan Sørensen <johan@johansorensen.com> | 2009-04-22 15:18:36 +0200 |
commit | 3d0b8bd4c35460c49eb10c543d071de30996c985 (patch) | |
tree | 1ca67d6eb48b1e9e753fb237e2a6984ae63c145f /script | |
parent | 85781e946ec572ade5d5fb85ad22ce6d94c9a196 (diff) | |
download | gitorious-mainline-outdated-3d0b8bd4c35460c49eb10c543d071de30996c985.zip gitorious-mainline-outdated-3d0b8bd4c35460c49eb10c543d071de30996c985.tar.gz gitorious-mainline-outdated-3d0b8bd4c35460c49eb10c543d071de30996c985.tar.bz2 |
Don't log invalid requests in the ruby git-daemon
Diffstat (limited to 'script')
-rwxr-xr-x | script/git-daemon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/git-daemon b/script/git-daemon index 472c3eb..b93a7bb 100755 --- a/script/git-daemon +++ b/script/git-daemon @@ -132,7 +132,7 @@ module Git end end rescue Errno::EAGAIN else - $stderr.puts "Invalid request from #{ip}: #{line}" + # $stderr.puts "Invalid request from #{ip}: #{line.inspect}" $children_active -= 1 end session.close |