On 18. mai. 2009, at 22.04, Scyllinice wrote: > When I try to create a repository, no task is ever created in the > database. In fact, no tasks are ever created. What do you suspect is > wrong? User account and project creation work as expected. SSH keys > can be uploaded, but I don't think they ever get added to the keys > file.
Actually, Gitorious no longer uses the database approach to repository creation and SSH key adding, it's done by the asynchronous messaging system introduced a week ago. Since your app doesn't crash when you create a repository, I suspect you have a MQ server running; Gitorious sends messages for creating repositories and adding SSH keys to this queue. However, you need to consume the messages for these backend tasks to be performed. Theres a poller script in the script/ directory that does this, did you start it (ruby script/poller start)? If not, try to run it, and the tasks should be performed. My apologies if I misunderstand you… Regards, - Marius --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
