Skip to content

Commit 5937fd3

Browse files
committed
fix osc.Conn Serve call
1 parent a56e1e0 commit 5937fd3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ func (c *Client) Connect(addr string, timeout time.Duration) error {
169169
err error
170170
)
171171
for time.Now().Sub(start) < timeout {
172-
err = c.oscConn.Serve(c.oscHandlers())
172+
err = c.oscConn.Serve(8, c.oscHandlers()) // Arbitrary number of worker routines.
173173
if err != nil {
174174
time.Sleep(100 * time.Second)
175175
continue

0 commit comments

Comments
 (0)