equal
deleted
inserted
replaced
1 { |
|
2 Dumper => { |
|
3 JSONStackwalker => './stackwalker', |
|
4 SymbolsPath => 'breakpad-debug-symbols/*', |
|
5 }, |
|
6 # Storage => { |
|
7 # Type => "CrashTest::Storage::FileSystem", |
|
8 # DataDir => 'data/', |
|
9 # }, |
|
10 Storage => { |
|
11 Type => "CrashTest::Storage::Sql", |
|
12 DSN => "dbi:Pg:dbname=crashreports", |
|
13 DataDir => 'data/', |
|
14 }, |
|
15 DecodeQueue => { |
|
16 Type => "CrashTest::Decode::Queue::NoQueue" |
|
17 }, |
|
18 # DecodeQueue => { |
|
19 # Type => "CrashTest::Decode::Queue::Gearman", |
|
20 # GearmanServers => [ 'localhost:4730' ], |
|
21 # }, |
|
22 WebInterface => { |
|
23 ScmLinks => { |
|
24 "svn:svn.example.org/testproject" => 'https://redmine.example.org/projects/testproject/repository/entry/<%= $scmpath =%>?rev=<%= $rev =%>#L<%= $line =%>', |
|
25 }, |
|
26 ExtraColumns => { |
|
27 Index => [ |
|
28 { id => 'os', db_column => "crash_user.os", name => 'Operating System' }, |
|
29 ], |
|
30 }, |
|
31 }, |
|
32 }; |
|
33 # vim:ft=perl: |
|