foreman_remote_execution 12.0.2 → 12.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/models/job_invocation.rb +5 -0
- data/lib/foreman_remote_execution/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d9ecaf9a67e402868291ed6ecf2d064cfa091bf2a5a3eaf2ec8e160f8e7ede5
|
4
|
+
data.tar.gz: 35186e50675ac5b48624a5cfd22d2a2617c8adac7bd2b2a547313acdea0eec29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33850b7431db3f15ba1168fe448eee84d9feb91b8f15d1239f6270513bcc59027a08e6600e9953705a70f05f631b70083f3cc097bce86cde721acfa33be47889
|
7
|
+
data.tar.gz: a83abe1d5a040bd019a8649db4318633bdc24a7dbb690a676ff707ba62f6356e9df4559bf2be84a36c472d54948b97c46bd6ee6691fc854d29f427d88472d0fa
|
@@ -77,6 +77,11 @@ class JobInvocation < ApplicationRecord
|
|
77
77
|
:ext_method => :search_by_recurring_logic, :only_explicit => true,
|
78
78
|
:complete_value => { :true => true, :false => false }
|
79
79
|
|
80
|
+
validates :concurrency_level, :numericality => {
|
81
|
+
:allow_nil => true,
|
82
|
+
:greater_than => 0,
|
83
|
+
}
|
84
|
+
|
80
85
|
default_scope -> { order('job_invocations.id DESC') }
|
81
86
|
|
82
87
|
scope :latest_jobs, -> { unscoped.joins(:task).order('foreman_tasks_tasks.start_at DESC').authorized(:view_job_invocations).limit(5) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: foreman_remote_execution
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 12.0.
|
4
|
+
version: 12.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Foreman Remote Execution team
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-01-
|
11
|
+
date: 2024-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: deface
|
@@ -575,7 +575,7 @@ homepage: https://github.com/theforeman/foreman_remote_execution
|
|
575
575
|
licenses:
|
576
576
|
- GPL-3.0
|
577
577
|
metadata: {}
|
578
|
-
post_install_message:
|
578
|
+
post_install_message:
|
579
579
|
rdoc_options: []
|
580
580
|
require_paths:
|
581
581
|
- lib
|
@@ -593,8 +593,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
593
593
|
- !ruby/object:Gem::Version
|
594
594
|
version: '0'
|
595
595
|
requirements: []
|
596
|
-
rubygems_version: 3.
|
597
|
-
signing_key:
|
596
|
+
rubygems_version: 3.3.26
|
597
|
+
signing_key:
|
598
598
|
specification_version: 4
|
599
599
|
summary: A plugin bringing remote execution to the Foreman, completing the config
|
600
600
|
management functionality with remote management functionality.
|