File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ Thin Mode Changes
1818#) Fixed bug which caused a cursor leak if an error was thrown while
1919 processing the execution of a query.
2020#) Fixed bugs in the implementation of the statement cache.
21+ #) Eliminated unneeded round trip when using token authentication to connect
22+ to the database.
2123
2224Thick Mode Changes
2325++++++++++++++++++
Original file line number Diff line number Diff line change @@ -226,7 +226,8 @@ cdef class Protocol:
226226 auth_message = conn_impl._create_message(AuthMessage)
227227 auth_message._set_params(params, description)
228228 self ._process_message(auth_message)
229- self ._process_message(auth_message)
229+ if auth_message.resend:
230+ self ._process_message(auth_message)
230231
231232 # mark protocol to indicate that connect is no longer in progress; this
232233 # allows the normal break/reset mechanism to fire
You can’t perform that action at this time.
0 commit comments