File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed
lib/thin/protocol/messages Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,9 @@ Common Changes
28
28
Thin Mode Changes
29
29
+++++++++++++++++
30
30
31
+ #) Fixed issue that does not throw Authentication error for FastAuth
32
+ when invalid token is used with external authentication.
33
+
31
34
#) Added connection optimization feature which uses Server Name Indication (SNI)
32
35
extension of the TLS protocol.
33
36
Original file line number Diff line number Diff line change 1
- // Copyright (c) 2023, 2024 , Oracle and/or its affiliates.
1
+ // Copyright (c) 2023, 2025 , Oracle and/or its affiliates.
2
2
3
3
//-----------------------------------------------------------------------------
4
4
//
@@ -70,6 +70,11 @@ class FastAuthMessage extends Message {
70
70
} else {
71
71
this . authMessage . processMessage ( buf , messageType ) ;
72
72
this . endOfResponse = this . authMessage . endOfResponse ;
73
+ if ( this . authMessage . errorOccurred ) {
74
+ // Capture the Error returned in TNS_MSG_TYPE_ERROR processing.
75
+ this . errorOccurred = this . authMessage . errorOccurred ;
76
+ this . errorInfo = this . authMessage . errorInfo ;
77
+ }
73
78
}
74
79
}
75
80
You can’t perform that action at this time.
0 commit comments