event_store_client 1.0.13 → 1.0.14
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7da2b7bfb5455d011c17277a246f91231b07f15e3f9f26e8eaf2ef9463766923
|
4
|
+
data.tar.gz: 6b51fe26c54af786c356498d92e32d8cfcd285e88bc07834a3d5435ad8085e34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe14bb406356e188524047376771c3a65bcea7d2d52015688fe331d891bc4e14e1bdecc5b0640189d317688f52ee77b47e601df89a9c06954231bbde9d4e376e
|
7
|
+
data.tar.gz: 2722c3ee42665207dc28811e0bdd8351a17e8f51c1b025f9b3620d8edeb5a14a0675fe7a77c37f778d41c2ee04de5c8ed1d0450c8003e17f2501998e74652680
|
@@ -9,6 +9,8 @@ module EventStoreClient
|
|
9
9
|
stats = options[:stats] || true
|
10
10
|
start = options[:start] || 0
|
11
11
|
retries = options[:retries] || 5
|
12
|
+
max_checkpoint_count = options[:max_checkpoint_count] || 0
|
13
|
+
min_checkpoint_count = options[:min_checkpoint_count] || 0
|
12
14
|
|
13
15
|
connection.call(
|
14
16
|
:put,
|
@@ -17,6 +19,8 @@ module EventStoreClient
|
|
17
19
|
extraStatistics: stats,
|
18
20
|
startFrom: start,
|
19
21
|
maxRetryCount: retries,
|
22
|
+
maxCheckPointCount: max_checkpoint_count,
|
23
|
+
minCheckPointCount: min_checkpoint_count,
|
20
24
|
resolveLinkTos: true
|
21
25
|
},
|
22
26
|
headers: {
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: event_store_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sebastian Wilgosz
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-05-
|
11
|
+
date: 2021-05-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dry-configurable
|
@@ -244,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
244
244
|
- !ruby/object:Gem::Version
|
245
245
|
version: '0'
|
246
246
|
requirements: []
|
247
|
-
rubygems_version: 3.0.
|
247
|
+
rubygems_version: 3.0.4
|
248
248
|
signing_key:
|
249
249
|
specification_version: 4
|
250
250
|
summary: Ruby integration for https://eventstore.org
|