aerospike 2.21.0 → 2.21.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/lib/aerospike/connection/authenticate.rb +3 -2
- data/lib/aerospike/version.rb +1 -1
- 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: f0685f64b5853e918eca12c6ad4a64a1c7ac5c1d0370627c252e598f4686be68
|
4
|
+
data.tar.gz: a342e374dc180201176018cf1e13c7764a64963fe78e505d55d93b5f2ed83b70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4151a866e0ff1c36e924aa1a6123411499f7c1bcf48b01177028db5d7a7a72ac2cfde2febb398a42774c4b490c5e0f78839a14a52d5d0c19c9850f5e34dd7141
|
7
|
+
data.tar.gz: babd62c5d0307153073c51bfa879e0700a9ad56875da37eb711965da82ddc09b765cbbd770ec60c6973d818318200708ba27a4c4ee4a7b598076324ef9093176
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,13 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [2.21.1] - 2022-06-21
|
6
|
+
|
7
|
+
This s hotfix release. It is recommended to upgrade your client if you use authentication.
|
8
|
+
|
9
|
+
* **Bug Fixes**
|
10
|
+
* Fix called function name in Authenticate.
|
11
|
+
|
5
12
|
## [2.21.0] - 2022-06-07
|
6
13
|
|
7
14
|
* **New Features**
|
@@ -33,7 +33,7 @@ module Aerospike
|
|
33
33
|
end
|
34
34
|
module AuthenticateNew
|
35
35
|
class << self
|
36
|
-
INVALID_SESSION_ERR = [ResultCode::INVALID_CREDENTIAL,
|
36
|
+
INVALID_SESSION_ERR = [ResultCode::INVALID_CREDENTIAL,
|
37
37
|
ResultCode::EXPIRED_SESSION]
|
38
38
|
|
39
39
|
def call(conn, cluster)
|
@@ -48,7 +48,7 @@ module Aerospike
|
|
48
48
|
cluster.reset_session_info
|
49
49
|
if ae.is_a?(Exceptions::Aerospike)
|
50
50
|
if INVALID_SESSION_ERR.include?(ae.result_code)
|
51
|
-
command.
|
51
|
+
command.authenticate_new(conn, cluster)
|
52
52
|
return
|
53
53
|
end
|
54
54
|
end
|
@@ -65,3 +65,4 @@ module Aerospike
|
|
65
65
|
end
|
66
66
|
end
|
67
67
|
end
|
68
|
+
|
data/lib/aerospike/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aerospike
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.21.
|
4
|
+
version: 2.21.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Khosrow Afroozeh
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2022-06-
|
12
|
+
date: 2022-06-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: msgpack
|