Skip to content

Commit

Permalink
increase locked_by column size to fix issues with long hostnames
Browse files Browse the repository at this point in the history
crashing delayed_job worker. This has become a very common issue for
our users of snorby.
  • Loading branch information
djcas9 committed Feb 15, 2011
1 parent 2a63109 commit b77c0ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/delayed/backend/data_mapper.rb
Expand Up @@ -13,7 +13,7 @@ class Job
property :handler, Text, :lazy => false
property :run_at, Time, :index => :run_at_priority
property :locked_at, Time, :index => true
property :locked_by, String
property :locked_by, Text
property :failed_at, Time
property :last_error, Text

Expand Down

0 comments on commit b77c0ae

Please sign in to comment.