ci-queue 0.73.0 → 0.74.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 32e52b7283478b27a11c44576546f51f05658b891906956f6f590fa4e22a6054
4
- data.tar.gz: 72e0ac9ee22984d0d384ca9e9c832be90ee987d237a44fc94b9ed8f7c63823fc
3
+ metadata.gz: d8b7cf59546e2a0af5aa79bba98108f09131fd8cae1ea8a6986d1965e5ab5c3d
4
+ data.tar.gz: '08295aa1ed490f21778559b80ddaf4223a18c70f53e58dfbc8ca81e25d1dbf90'
5
5
  SHA512:
6
- metadata.gz: c33f2ff2045bd8bd2d2b8a3b5cfd00c0f230d5f0d6fe658aef7beb1eb1ef7533da7202d71a533a326a9c5ba629016e7b42cf3f1ceed8f5d8c0eda621e9794d94
7
- data.tar.gz: 9271a7d77dd497d1d17f4826b9e21ae7968c821dc570f0c1600803fef6fd27d8d10d1ab753abaaf7f8b2edcfcc22d2649d4075eaa11d7f90ef941f9d02bcfed6
6
+ metadata.gz: 485afd18f372430ef9002525addfa428fabefb78612b33823b20a4a4ff30f96db9ad04b8317201882f260690406d18e96d39aa880bb5cb55c80f0e9732400436
7
+ data.tar.gz: 8ac8845cc32c1881e5c98faaafddaf18b124fb84a1d3ddee4e1ac991e19f1b687c52bff02269d0f70b1412757244242bd0ddb42c6e99d2a28f9aee2720e036eb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ci-queue (0.73.0)
4
+ ci-queue (0.74.0)
5
5
  logger
6
6
 
7
7
  GEM
@@ -20,6 +20,8 @@ module CI
20
20
  statsd_endpoint: env['CI_QUEUE_STATSD_ADDR'],
21
21
  redis_ttl: env['CI_QUEUE_REDIS_TTL']&.to_i || 8 * 60 * 60,
22
22
  debug_log: env['CI_QUEUE_DEBUG_LOG'],
23
+ max_requeues: env['CI_QUEUE_MAX_REQUEUES']&.to_i || 0,
24
+ requeue_tolerance: env['CI_QUEUE_REQUEUE_TOLERANCE']&.to_f || 0,
23
25
  )
24
26
  end
25
27
 
@@ -219,7 +219,7 @@ module CI
219
219
  end
220
220
 
221
221
  if @master = (value == status)
222
- puts "Worker electected as leader, pushing #{@total} tests to the queue."
222
+ puts "Worker elected as leader, pushing #{@total} tests to the queue."
223
223
  puts
224
224
 
225
225
  attempts = 0
@@ -2,7 +2,7 @@
2
2
 
3
3
  module CI
4
4
  module Queue
5
- VERSION = '0.73.0'
5
+ VERSION = '0.74.0'
6
6
  DEV_SCRIPTS_ROOT = ::File.expand_path('../../../../../redis', __FILE__)
7
7
  RELEASE_SCRIPTS_ROOT = ::File.expand_path('../redis', __FILE__)
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ci-queue
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.73.0
4
+ version: 0.74.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jean Boussier
@@ -254,7 +254,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
254
254
  - !ruby/object:Gem::Version
255
255
  version: '0'
256
256
  requirements: []
257
- rubygems_version: 3.6.9
257
+ rubygems_version: 3.7.1
258
258
  specification_version: 4
259
259
  summary: Distribute tests over many workers using a queue
260
260
  test_files: []