TT#165251 redis: don't fail on fist check of connection

* we are checking that the variable is not nil but on
  start we were setting the value to an empty metatable

Change-Id: Ib5b409b5c6e837baef38c35c7e619a46f44d51b9
(cherry picked from commit 3a008159b2)
mr10.2.1
Victor Seva 4 years ago committed by Víctor Seva
parent b6fa4d15a1
commit 79f445145a

@ -57,8 +57,6 @@ end
check_pair_dup = false,
allow_negative = false
},
central = {},
pair = {}
};
return t;
end

@ -56,8 +56,6 @@ end
},
check_pair_dup = false
},
central = {},
pair = {}
};
return t;
end

@ -51,7 +51,6 @@ function NGCPPush.init()
},
},
c = curl.easy_init(),
client = {},
};
return t;
end

@ -50,7 +50,6 @@ end
expire = 7200,
out_expire = 86400
},
central = {},
};
return t;
end

Loading…
Cancel
Save