File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,8 @@ Thin Mode Changes
29
29
#) Fixed bug with execution of a PL/SQL block containing at least one output
30
30
bind variable immediately following a query that returned multiple
31
31
duplicate rows.
32
+ #) Fixed bug with connect strings containing ``SOURCE_ROUTE=YES `` where the
33
+ second host is unresolvable by the client.
32
34
33
35
Thick Mode Changes
34
36
++++++++++++++++++
Original file line number Diff line number Diff line change @@ -772,9 +772,10 @@ cdef class AddressList(ConnectParamsNode):
772
772
cdef:
773
773
list addresses = []
774
774
Address address
775
- for address in children:
775
+ ConnectParamsNode._set_active_children(self , children)
776
+ for address in self .active_children:
776
777
addresses.extend(address.resolve_host_name())
777
- ConnectParamsNode._set_active_children( self , addresses)
778
+ self .active_children = addresses
778
779
779
780
cdef bint _uses_tcps(self ):
780
781
"""
You can’t perform that action at this time.
0 commit comments