rails_execution 0.1.9 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 176aa147a9e384a353c1f435063461d203a6c4de3676889e6cb7f71a4a096ed3
4
- data.tar.gz: 0ffe2b599d50639b46a02e13b520e22ef67a41da3b1967336072a623d1e06b15
3
+ metadata.gz: 7a7f3fd0259f76d5345fa0ebb86b51445193a21944032ecbe41ff3d35cfb3514
4
+ data.tar.gz: 761275ff6d42de49b759e3076085d38c6b3cc4b81524004eea41160ece2123e5
5
5
  SHA512:
6
- metadata.gz: '039e5794a629deeaca5552c77d29ea044863219744819ee451bbbbfdc45f9a990ad02342b7a1675942eba2d7c5333c2ff42a3cfcf2610c93b42003e39cdbcc5b'
7
- data.tar.gz: 0b1e9d0010126b51b2990cc9dc45e78ad812790096123a30a8d4051a3cdad9c4c5e5974fc917c4a9f3ea61af8c93e4994b5817a26b7f81ef2cfb9b241c24aaeb
6
+ metadata.gz: 6db17f4b23202789f7b131785b2218b4e18ef8513cd6b11e87593d2ef054c82a8535e2070ee94ec51f206d411447d72dda245364355b4c67ce65b7fd834e73bd
7
+ data.tar.gz: 2ce2d6380ea0bce57999eeba74707c38e2649bf9c714b5d31b52fb237c5e28e73f6c09945442651d411efceb56f70a37dade6618ee9b4549e707a60fdd70920f
@@ -39,9 +39,9 @@ module RailsExecution
39
39
  def setup
40
40
  task.with_lock do
41
41
  unless task.is_processing?
42
- task.update(status: :processing)
43
42
  task.activities.create(owner: owner, message: 'Process the task with background job')
44
- ::RailsExecution.configuration.task_background_executor.call(task.id)
43
+ jid = ::RailsExecution.configuration.task_background_executor.call(task.id)
44
+ task.update!(status: :processing, jid: jid.presence)
45
45
  end
46
46
  end
47
47
  end
@@ -44,7 +44,7 @@ module RailsExecution
44
44
  class #{class_name} < ::RailsExecution::Services::Executor
45
45
  def call
46
46
  task.with_lock do
47
- stop!('Task is being executed by another process') if task.is_processing?
47
+ stop!('Task is being executed by another process') if task.is_processing? && task.jid.blank?
48
48
 
49
49
  task.update!(status: :processing)
50
50
  #{task.script}
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsExecution
4
- VERSION = '0.1.9'
4
+ VERSION = '0.1.10'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_execution
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.9
4
+ version: 0.1.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Khoa Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-05 00:00:00.000000000 Z
11
+ date: 2024-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: haml