the timeout of WAIT command is in milliseconds.

This commit is contained in:
Ichinose Shogo 2017-02-24 18:03:21 +09:00
parent c86c141c38
commit 892fb8d573
2 changed files with 4 additions and 2 deletions

View File

@ -275,7 +275,7 @@ func (c *cmdable) Ping() *StatusCmd {
func (c *cmdable) Wait(numSlaves int, timeout time.Duration) *IntCmd { func (c *cmdable) Wait(numSlaves int, timeout time.Duration) *IntCmd {
cmd := NewIntCmd("wait", numSlaves, int(timeout/time.Second)) cmd := NewIntCmd("wait", numSlaves, int(timeout/time.Millisecond))
c.process(cmd) c.process(cmd)
return cmd return cmd
} }

View File

@ -52,9 +52,11 @@ var _ = Describe("Commands", func() {
It("should Wait", func() { It("should Wait", func() {
// assume testing on single redis instance // assume testing on single redis instance
wait := client.Wait(0, time.Minute) start := time.Now()
wait := client.Wait(1, time.Second)
Expect(wait.Err()).NotTo(HaveOccurred()) Expect(wait.Err()).NotTo(HaveOccurred())
Expect(wait.Val()).To(Equal(int64(0))) Expect(wait.Val()).To(Equal(int64(0)))
Expect(time.Now()).To(BeTemporally("~", start.Add(time.Second), 800*time.Millisecond))
}) })
It("should Select", func() { It("should Select", func() {