equal
deleted
inserted
replaced
7 # Type => "CrashTest::Storage::FileSystem", |
7 # Type => "CrashTest::Storage::FileSystem", |
8 # DataDir => 'data/', |
8 # DataDir => 'data/', |
9 # }, |
9 # }, |
10 Storage => { |
10 Storage => { |
11 Type => "CrashTest::Storage::Sql", |
11 Type => "CrashTest::Storage::Sql", |
12 DSN => "dbi:SQLite:dbname=data/db.sqlite", |
12 DSN => "dbi:Pg:dbname=crashreports", |
13 DataDir => 'data/', |
13 DataDir => 'data/', |
14 }, |
14 }, |
15 DecodeQueue => { |
15 DecodeQueue => { |
16 Type => "CrashTest::Decode::Queue::NoQueue" |
16 Type => "CrashTest::Decode::Queue::NoQueue" |
17 }, |
17 }, |
18 # DecodeQueue => { |
18 # DecodeQueue => { |
19 # Type => "CrashTest::Decode::Queue::Gearman", |
19 # Type => "CrashTest::Decode::Queue::Gearman", |
20 # GearmanServers => [ 'localhost:4730' ], |
20 # GearmanServers => [ 'localhost:4730' ], |
21 # }, |
21 # }, |
22 ScmLinks => { |
22 WebInterface => { |
23 "svn:svn.example.org/testproject" => 'https://redmine.example.org/projects/testproject/repository/entry/<%= $scmpath =%>?rev=<%= $rev =%>#L<%= $line =%>', |
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 }, |
24 }, |
31 }, |
25 }; |
32 }; |
|
33 # vim:ft=perl: |