Improve git timeout logging
Created by: Olegas
When timeout occurs in Grit, by default GitTimeout
exception doesn't contains information about command and bytes_read property.
Merge request reports
Activity
48 48 end 49 49 50 50 def handle_exception(exception) 51 Gitlab::GitLogger.error(exception.message) 51 if exception.instance_of?(Grit::Git::GitTimeout) 52 detailed_message = exception.message
Please register or sign in to reply