500 error : on Commit and Network pages
Created by: therma
I'm managing several projects on Gitlab and for one particular project I always get 500 error when navigating on "Commit" or "Network" pages. Other projects/repos are working fine. Note that few days ago those pages were also accessible from that project.
I can't see what make this repository so special since I can continue to push and pull on it.
Note that last commits are correctly displayed on the project dashboard.
Here is the log for the "Commit" page:
Started GET "/gitlab/my_project/commits" for 10.1.1.1 at 2012-08-09 10:43:58 +0200
Processing by CommitsController#index as HTML
Parameters: {"project_id"=>"my_project"}
Rendered commits/_head.html.haml (19.2ms)
Rendered commits/_commit.html.haml (21.2ms)
Rendered commits/_commit.html.haml (22.8ms)
Rendered commits/_commit.html.haml (15.3ms)
Rendered commits/_commit.html.haml (15.2ms)
Rendered commits/_commit.html.haml (15.2ms)
Rendered commits/_commit.html.haml (37.8ms)
Rendered commits/_commit.html.haml (29.2ms)
Rendered commits/_commit.html.haml (14.8ms)
Rendered commits/_commits.html.haml (183.4ms)
Rendered commits/index.html.haml within layouts/project (212.0ms)
Completed 500 Internal Server Error in 358ms
ActionView::Template::Error (invalid byte sequence in UTF-8):
8: %strong.cgray= commit.author_name
9: –
10: = image_tag gravatar_icon(commit.author_email), :class => "avatar", :width => 16
11: %span.row_title= truncate(commit.safe_message, :length => 50)
12:
13: %span.committed_ago
14: = time_ago_in_words(commit.committed_date)
app/views/commits/_commit.html.haml:11:in `block in _app_views_commits__commit_html_haml__268221235_98113000'
app/views/commits/_commit.html.haml:5:in `_app_views_commits__commit_html_haml__268221235_98113000'
app/views/commits/_commits.html.haml:6:in `block in _app_views_commits__commits_html_haml___28479604_99309830'
app/views/commits/_commits.html.haml:1:in `each'
app/views/commits/_commits.html.haml:1:in `_app_views_commits__commits_html_haml___28479604_99309830'
app/views/commits/index.html.haml:15:in `_app_views_commits_index_html_haml__697494828_102681090'
app/controllers/commits_controller.rb:21:in `index'
and here is the log for the "Network" page:
Started GET "/gitlab/my_project/graph" for 10.1.1.1 at 2012-08-09 10:44:10 +0200
Processing by ProjectsController#graph as HTML
Parameters: {"id"=>"my_project"}
Rendered projects/graph.html.haml within layouts/project (7.5ms)
Completed 500 Internal Server Error in 652ms
ActionView::Template::Error (invalid byte sequence in UTF-8):
4: %h4
5: %small You can move around the graph by using arrow keys.
6: #holder.graph
7: :javascript
8: var chunk1={commits:#{@commits_json}};
9: var days=#{@days_json};
10: initGraph();
app/views/projects/graph.html.haml:7:in `_app_views_projects_graph_html_haml__102271355_99703250'