hydra 0.16.6 → 0.16.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/hydra.gemspec +2 -2
  3. data/lib/hydra/master.rb +3 -1
  4. metadata +3 -3
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.16.6
1
+ 0.16.7
data/hydra.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{hydra}
8
- s.version = "0.16.6"
8
+ s.version = "0.16.7"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Nick Gauthier"]
12
- s.date = %q{2010-04-22}
12
+ s.date = %q{2010-04-28}
13
13
  s.description = %q{Spread your tests over multiple machines to test your code faster.}
14
14
  s.email = %q{nick@smartlogicsolutions.com}
15
15
  s.extra_rdoc_files = [
data/lib/hydra/master.rb CHANGED
@@ -83,7 +83,9 @@ module Hydra #:nodoc:
83
83
 
84
84
  # Process the results coming back from the worker.
85
85
  def process_results(worker, message)
86
- if message.output =~ /ActiveRecord::StatementInvalid(.*)[Dd]eadlock/
86
+ if message.output =~ /ActiveRecord::StatementInvalid(.*)[Dd]eadlock/ or
87
+ message.output =~ /PGError: ERROR(.*)[Dd]eadlock/ or
88
+ message.output =~ /Mysql::Error: SAVEPOINT(.*)does not exist: ROLLBACK/
87
89
  trace "Deadlock detected running [#{message.file}]. Will retry at the end"
88
90
  @files.push(message.file)
89
91
  else
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 16
8
- - 6
9
- version: 0.16.6
8
+ - 7
9
+ version: 0.16.7
10
10
  platform: ruby
11
11
  authors:
12
12
  - Nick Gauthier
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-04-22 00:00:00 -04:00
17
+ date: 2010-04-28 00:00:00 -04:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency