Skip to content

Commit

Permalink
Add fix to return on double Acfs#run
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraichen committed Jun 17, 2014
1 parent 6f030ba commit ef58fdc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions lib/acfs/runner.rb
Expand Up @@ -56,6 +56,8 @@ def running?
# Start processing queued operations.
#
def start
return if running?

enqueue_operations

@running = true
Expand Down
4 changes: 2 additions & 2 deletions lib/acfs/version.rb
Expand Up @@ -2,8 +2,8 @@ module Acfs
module VERSION
MAJOR = 0
MINOR = 40
PATCH = 0
STAGE = nil
PATCH = 1
STAGE = 'rc1'

STRING = [MAJOR, MINOR, PATCH, STAGE].reject(&:nil?).join('.')

Expand Down

0 comments on commit ef58fdc

Please sign in to comment.