rails_execution 0.1.8 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/rails_execution/tasks/_attachment_files.html.haml +1 -1
- data/app/views/rails_execution/tasks/_form.html.haml +1 -1
- data/lib/rails_execution/services/background_execution.rb +2 -2
- data/lib/rails_execution/services/execution.rb +3 -0
- data/lib/rails_execution/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a7f3fd0259f76d5345fa0ebb86b51445193a21944032ecbe41ff3d35cfb3514
|
4
|
+
data.tar.gz: 761275ff6d42de49b759e3076085d38c6b3cc4b81524004eea41160ece2123e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6db17f4b23202789f7b131785b2218b4e18ef8513cd6b11e87593d2ef054c82a8535e2070ee94ec51f206d411447d72dda245364355b4c67ce65b7fd834e73bd
|
7
|
+
data.tar.gz: 2ce2d6380ea0bce57999eeba74707c38e2649bf9c714b5d31b52fb237c5e28e73f6c09945442651d411efceb56f70a37dade6618ee9b4549e707a60fdd70920f
|
@@ -31,7 +31,7 @@
|
|
31
31
|
= f.datetime_local_field :scheduled_at, class: "form-control", placeholder: "Select Datetime"
|
32
32
|
= f.select :repeat_mode, options_for_select(task.repeat_mode_select_options.invert, f.object.repeat_mode), {}, class: "form-control", disabled: !task.scheduled_at?
|
33
33
|
- if RailsExecution.configuration.file_upload
|
34
|
-
.mt-4= render partial: 'attachments', locals: { task_attachment_files: }
|
34
|
+
.mt-4= render partial: 'attachments', locals: { task_attachment_files: task_attachment_files }
|
35
35
|
#attachment_files.mb-3
|
36
36
|
%ul.list-unstyled= render partial: 'attachment_file_fields'
|
37
37
|
|
@@ -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,6 +44,9 @@ 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? && task.jid.blank?
|
48
|
+
|
49
|
+
task.update!(status: :processing)
|
47
50
|
#{task.script}
|
48
51
|
end
|
49
52
|
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.
|
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:
|
11
|
+
date: 2024-01-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: haml
|