conjur-api 4.24.1 → 4.25.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 +5 -0
- data/lib/conjur-api/version.rb +1 -1
- data/lib/conjur/base.rb +3 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0f792bf6c2fecf1b2c2c5756b612107162435c7
|
|
4
|
+
data.tar.gz: 34ee61c0276a1e07ca7f3ba449474d402d867475
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf65304611eb945ad4f5b352a01405096acce35a42b721bf9c999660423fedf8fd9524896d17de26e792ed4fe02292739cf86a49ec5fc04a1aa8ce26bccab152
|
|
7
|
+
data.tar.gz: 9a1d53c9643545419e27172f204635b6273155b4a3f0c0920cfda05e8631387f46433a266badc660a8a65b8a5995e2f83e4b5fd9431f31311bcb5b9d0866192e
|
data/CHANGELOG.md
CHANGED
data/lib/conjur-api/version.rb
CHANGED
data/lib/conjur/base.rb
CHANGED
|
@@ -288,7 +288,9 @@ module Conjur
|
|
|
288
288
|
@token = Conjur::API.authenticate(@username, @api_key)
|
|
289
289
|
end
|
|
290
290
|
|
|
291
|
-
|
|
291
|
+
# The four minutes is to work around a bug in Conjur < 4.7 causing a 404 on
|
|
292
|
+
# long-running operations (when the token is used right around the 5 minute mark).
|
|
293
|
+
TOKEN_STALE = 4.minutes
|
|
292
294
|
|
|
293
295
|
# Checks if the token is old (or not present).
|
|
294
296
|
#
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: conjur-api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.
|
|
4
|
+
version: 4.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Rafal Rzepecki
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2016-06-
|
|
12
|
+
date: 2016-06-17 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rest-client
|