dynflow 0.8.14 → 0.8.15
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c5888e45403439f7db59f31b1cd22b345cfc1670
|
|
4
|
+
data.tar.gz: 93c741456f30a692f1b9a2b9ba0e75d311b2eb66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2382def5079b7fb102b66e8fedc78ecec4a67ff727e3ecdb37e6c7452678ef002fb74defaed23c0bfd9a5e10b2b736f4775ac3ad532c26d9de832df3f4ff29c2
|
|
7
|
+
data.tar.gz: 2a1ceda8cc98ddfa53bce347a17e0b11a2199d402b53b956f117672d9d44e1b8ac66783d6566adaf5a5d3c15a37153a5254330370c50da8c9650e69e1704a09a
|
|
@@ -55,7 +55,7 @@ module Dynflow
|
|
|
55
55
|
paginate(table(:execution_plan), options),
|
|
56
56
|
options),
|
|
57
57
|
options[:filters])
|
|
58
|
-
data_set.map { |record| load_data(record) }
|
|
58
|
+
data_set.all.map { |record| load_data(record) }
|
|
59
59
|
end
|
|
60
60
|
|
|
61
61
|
def delete_execution_plans(filters, batch_size = 1000)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Sequel.migration do
|
|
2
|
+
affected_tables = [:dynflow_actions, :dynflow_coordinator_records, :dynflow_delayed_plans,
|
|
3
|
+
:dynflow_envelopes, :dynflow_execution_plans]
|
|
4
|
+
up do
|
|
5
|
+
affected_tables.each do |table|
|
|
6
|
+
alter_table(table) do
|
|
7
|
+
if @db.database_type == :mysql
|
|
8
|
+
set_column_type :data, :mediumtext
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
|
|
14
|
+
down do
|
|
15
|
+
affected_tables.each do |table|
|
|
16
|
+
alter_table(table) do
|
|
17
|
+
if @db.database_type == :mysql
|
|
18
|
+
set_column_type :data, :text
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
data/lib/dynflow/version.rb
CHANGED
data/lib/dynflow/world.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dynflow
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.15
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Necas
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-
|
|
12
|
+
date: 2016-09-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: multi_json
|
|
@@ -436,6 +436,7 @@ files:
|
|
|
436
436
|
- lib/dynflow/persistence_adapters/sequel_migrations/006_fix_data_length.rb
|
|
437
437
|
- lib/dynflow/persistence_adapters/sequel_migrations/007_future_execution.rb
|
|
438
438
|
- lib/dynflow/persistence_adapters/sequel_migrations/008_rename_scheduled_plans_to_delayed_plans.rb
|
|
439
|
+
- lib/dynflow/persistence_adapters/sequel_migrations/009_fix_mysql_data_length.rb
|
|
439
440
|
- lib/dynflow/round_robin.rb
|
|
440
441
|
- lib/dynflow/semaphores.rb
|
|
441
442
|
- lib/dynflow/semaphores/abstract.rb
|