concord-ruby 0.3.3 → 0.3.5
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 +4 -4
- data/lib/gen-rb/bolt_types.rb +6 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93327c05c2cd1e2e80c0cba77f2729fe5bd54400
|
4
|
+
data.tar.gz: 5ff9d89592a0d9ef4f3b65db98521b26bb37b456
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28f61d98203fd92c3f8b0cff57673d9849b09342fb4f8d530d2a8c99f91c5439669c13f191c2b94bab5068cf6c80fa4bdf90694af8134a977535291a4ca02073
|
7
|
+
data.tar.gz: 82c0649f6ae5543041cc3547412d59b22f6d068dd1838f44aab66854d0f83bdf8fad8ca02549b1e39fd0761bcee6eb79b89be063b404893d6bcfde740729bb19
|
data/lib/gen-rb/bolt_types.rb
CHANGED
@@ -142,6 +142,7 @@ module Concord
|
|
142
142
|
CLIENTARGUMENTS = 10
|
143
143
|
ENVIRONMENTEXTRA = 11
|
144
144
|
DOCKERCONTAINER = 12
|
145
|
+
RETRIES = 13
|
145
146
|
|
146
147
|
FIELDS = {
|
147
148
|
FRAMEWORKLOGGINGLEVEL => {:type => ::Thrift::Types::I32, :name => 'frameworkLoggingLevel', :default => 1},
|
@@ -155,7 +156,8 @@ module Concord
|
|
155
156
|
COMPUTATIONALIASNAME => {:type => ::Thrift::Types::STRING, :name => 'computationAliasName'},
|
156
157
|
CLIENTARGUMENTS => {:type => ::Thrift::Types::LIST, :name => 'clientArguments', :element => {:type => ::Thrift::Types::STRING}},
|
157
158
|
ENVIRONMENTEXTRA => {:type => ::Thrift::Types::LIST, :name => 'environmentExtra', :element => {:type => ::Thrift::Types::STRING}},
|
158
|
-
DOCKERCONTAINER => {:type => ::Thrift::Types::STRING, :name => 'dockerContainer'}
|
159
|
+
DOCKERCONTAINER => {:type => ::Thrift::Types::STRING, :name => 'dockerContainer'},
|
160
|
+
RETRIES => {:type => ::Thrift::Types::I32, :name => 'retries', :default => 0}
|
159
161
|
}
|
160
162
|
|
161
163
|
def struct_fields; FIELDS; end
|
@@ -175,6 +177,7 @@ module Concord
|
|
175
177
|
DISK = 5
|
176
178
|
TASKHELPER = 6
|
177
179
|
NEEDSRECONCILIATION = 7
|
180
|
+
KILLED = 8
|
178
181
|
|
179
182
|
FIELDS = {
|
180
183
|
TASKID => {:type => ::Thrift::Types::STRING, :name => 'taskId'},
|
@@ -183,7 +186,8 @@ module Concord
|
|
183
186
|
MEM => {:type => ::Thrift::Types::I32, :name => 'mem'},
|
184
187
|
DISK => {:type => ::Thrift::Types::I32, :name => 'disk'},
|
185
188
|
TASKHELPER => {:type => ::Thrift::Types::STRUCT, :name => 'taskHelper', :class => ::Concord::Thrift::ExecutorTaskInfoHelper},
|
186
|
-
NEEDSRECONCILIATION => {:type => ::Thrift::Types::BOOL, :name => 'needsReconciliation'}
|
189
|
+
NEEDSRECONCILIATION => {:type => ::Thrift::Types::BOOL, :name => 'needsReconciliation'},
|
190
|
+
KILLED => {:type => ::Thrift::Types::BOOL, :name => 'killed'}
|
187
191
|
}
|
188
192
|
|
189
193
|
def struct_fields; FIELDS; end
|