netscaler-cli 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/etc/Version +1 -1
- data/lib/netscaler/vserver/response.rb +5 -5
- metadata +2 -2
data/etc/Version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.4.
|
1
|
+
0.4.2
|
@@ -101,11 +101,11 @@ module Netscaler::VServer
|
|
101
101
|
@type = raw_response[:svctype][:item]
|
102
102
|
|
103
103
|
if !index.nil?
|
104
|
-
@name = @name[
|
105
|
-
@ip_address = @ip_address[
|
106
|
-
@state = @state[
|
107
|
-
@port = @port[
|
108
|
-
@type = @type[
|
104
|
+
@name = @name[index]
|
105
|
+
@ip_address = @ip_address[index]
|
106
|
+
@state = @state[index]
|
107
|
+
@port = @port[index]
|
108
|
+
@type = @type[index]
|
109
109
|
end
|
110
110
|
end
|
111
111
|
|