I have some strange promblem with my gitorious install: sometimes long
running tasks runs only after second try
If i create repository it hangs in forever 'being created' state with
following error in message_procc. http://gist.github.com/250844

The only thing helps is to delete repository and create it again

On IRC johan-s suggested to add in the timeout block from the other
method in app/models/repository.rb

When create_git_repository looks like this it seems that my problem is
gone

  def self.create_git_repository(path)
    full_path = full_path_from_partial_path(path)
    Grit::Git.with_timeout(nil) do
        git_backend.create(full_path)
     end
    self.create_hooks(full_path)
  end

--

You received this message because you are subscribed to the Google Groups 
"Gitorious" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/gitorious?hl=en.


Reply via email to