@@ -845,8 +845,11 @@ def add(args)
845
845
else
846
846
@result = 0
847
847
begin
848
- conn = Connection . new ( :host => @host , :port => @port ,
849
- :encryption => @encryption )
848
+ conn = Connection . new \
849
+ :host => @host ,
850
+ :port => @port ,
851
+ :encryption => @encryption ,
852
+ :instrumentation_service => @instrumentation_service
850
853
if ( @result = conn . bind ( args [ :auth ] || @auth ) ) . result_code == 0
851
854
@result = conn . add ( args )
852
855
end
@@ -943,8 +946,11 @@ def modify(args)
943
946
else
944
947
@result = 0
945
948
begin
946
- conn = Connection . new ( :host => @host , :port => @port ,
947
- :encryption => @encryption )
949
+ conn = Connection . new \
950
+ :host => @host ,
951
+ :port => @port ,
952
+ :encryption => @encryption ,
953
+ :instrumentation_service => @instrumentation_service
948
954
if ( @result = conn . bind ( args [ :auth ] || @auth ) ) . result_code == 0
949
955
@result = conn . modify ( args )
950
956
end
@@ -1015,8 +1021,11 @@ def rename(args)
1015
1021
else
1016
1022
@result = 0
1017
1023
begin
1018
- conn = Connection . new ( :host => @host , :port => @port ,
1019
- :encryption => @encryption )
1024
+ conn = Connection . new \
1025
+ :host => @host ,
1026
+ :port => @port ,
1027
+ :encryption => @encryption ,
1028
+ :instrumentation_service => @instrumentation_service
1020
1029
if ( @result = conn . bind ( args [ :auth ] || @auth ) ) . result_code == 0
1021
1030
@result = conn . rename ( args )
1022
1031
end
@@ -1043,8 +1052,11 @@ def delete(args)
1043
1052
else
1044
1053
@result = 0
1045
1054
begin
1046
- conn = Connection . new ( :host => @host , :port => @port ,
1047
- :encryption => @encryption )
1055
+ conn = Connection . new \
1056
+ :host => @host ,
1057
+ :port => @port ,
1058
+ :encryption => @encryption ,
1059
+ :instrumentation_service => @instrumentation_service
1048
1060
if ( @result = conn . bind ( args [ :auth ] || @auth ) ) . result_code == 0
1049
1061
@result = conn . delete ( args )
1050
1062
end
0 commit comments