zeebe-client 0.12.1 → 0.13.0
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/CHANGELOG.md +4 -0
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/zeebe/client/proto/gateway_pb.rb +6 -0
- data/lib/zeebe/client/version.rb +1 -1
- data/proto/gateway.proto +8 -0
- 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: 17e37e552793b6e9da2af0ed06224a10c5c85aeb065b123621f7abe422b5101d
|
4
|
+
data.tar.gz: 4a0212f29f5d09c31dea91b8796d4f4ae3bff42e6ccfd5dc32eca97530a2b1fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 134b6b5d876ce16dfeae427bd24e2b2a4afb8af2a2cf4b368911e3ff37076708d7aa5da911df2b9d7c5a05a774299cba8e15e5eea10deaef9b6f8574701b533f
|
7
|
+
data.tar.gz: abddb8c2325a6e4e01aade80b47f61cc9250b10dc9bc1a2463af272cac87e6f3e21440d5fcf418dc4c27e4eeec4946c9c855edbdfc26340b1a2c59d7cb345ff4
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
data/Rakefile
CHANGED
@@ -13,7 +13,7 @@ task ci: ['zeebe:start', :default, 'zeebe:stop']
|
|
13
13
|
|
14
14
|
desc 'Starts Zeebe Docker container'
|
15
15
|
task 'zeebe:start' do
|
16
|
-
sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.
|
16
|
+
sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.26.0'
|
17
17
|
sleep(10)
|
18
18
|
end
|
19
19
|
|
@@ -137,11 +137,16 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
137
137
|
add_message "gateway_protocol.Partition" do
|
138
138
|
optional :partitionId, :int32, 1
|
139
139
|
optional :role, :enum, 2, "gateway_protocol.Partition.PartitionBrokerRole"
|
140
|
+
optional :health, :enum, 3, "gateway_protocol.Partition.PartitionBrokerHealth"
|
140
141
|
end
|
141
142
|
add_enum "gateway_protocol.Partition.PartitionBrokerRole" do
|
142
143
|
value :LEADER, 0
|
143
144
|
value :FOLLOWER, 1
|
144
145
|
end
|
146
|
+
add_enum "gateway_protocol.Partition.PartitionBrokerHealth" do
|
147
|
+
value :HEALTHY, 0
|
148
|
+
value :UNHEALTHY, 1
|
149
|
+
end
|
145
150
|
add_message "gateway_protocol.UpdateJobRetriesRequest" do
|
146
151
|
optional :jobKey, :int64, 1
|
147
152
|
optional :retries, :int32, 2
|
@@ -189,6 +194,7 @@ module Zeebe::Client::GatewayProtocol
|
|
189
194
|
BrokerInfo = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.BrokerInfo").msgclass
|
190
195
|
Partition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.Partition").msgclass
|
191
196
|
Partition::PartitionBrokerRole = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.Partition.PartitionBrokerRole").enummodule
|
197
|
+
Partition::PartitionBrokerHealth = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.Partition.PartitionBrokerHealth").enummodule
|
192
198
|
UpdateJobRetriesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.UpdateJobRetriesRequest").msgclass
|
193
199
|
UpdateJobRetriesResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.UpdateJobRetriesResponse").msgclass
|
194
200
|
SetVariablesRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.SetVariablesRequest").msgclass
|
data/lib/zeebe/client/version.rb
CHANGED
data/proto/gateway.proto
CHANGED
@@ -274,10 +274,18 @@ message Partition {
|
|
274
274
|
FOLLOWER = 1;
|
275
275
|
}
|
276
276
|
|
277
|
+
// Describes the current health of the partition
|
278
|
+
enum PartitionBrokerHealth {
|
279
|
+
HEALTHY = 0;
|
280
|
+
UNHEALTHY = 1;
|
281
|
+
}
|
282
|
+
|
277
283
|
// the unique ID of this partition
|
278
284
|
int32 partitionId = 1;
|
279
285
|
// the role of the broker for this partition
|
280
286
|
PartitionBrokerRole role = 2;
|
287
|
+
// the health of this partition
|
288
|
+
PartitionBrokerHealth health = 3;
|
281
289
|
}
|
282
290
|
|
283
291
|
message UpdateJobRetriesRequest {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zeebe-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Nicolai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-02-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|