Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(328)

Delta Between Two Patch Sets: zk.go

Issue 5641054: zookeeper: turn off logging by default
Left Patch Set: zookeeper: turn off logging by default Created 12 years, 1 month ago
Right Patch Set: zookeeper: turn off logging by default Created 12 years, 1 month ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « suite_test.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // gozk - ZooKeeper support for the Go language 1 // gozk - ZooKeeper support for the Go language
2 // 2 //
3 // https://wiki.ubuntu.com/gozk 3 // https://wiki.ubuntu.com/gozk
4 // 4 //
5 // Copyright (c) 2010-2011 Canonical Ltd. 5 // Copyright (c) 2010-2011 Canonical Ltd.
6 // 6 //
7 // Written by Gustavo Niemeyer <gustavo.niemeyer@canonical.com> 7 // Written by Gustavo Niemeyer <gustavo.niemeyer@canonical.com>
8 // 8 //
9 package zookeeper 9 package zookeeper
10 10
(...skipping 983 matching lines...) Expand 10 before | Expand all | Expand 10 after
994 event := Event{ 994 event := Event{
995 Type: int(data.event_type), 995 Type: int(data.event_type),
996 Path: C.GoString(data.event_path), 996 Path: C.GoString(data.event_path),
997 State: int(data.connection_state), 997 State: int(data.connection_state),
998 } 998 }
999 watchId := uintptr(data.watch_context) 999 watchId := uintptr(data.watch_context)
1000 C.destroy_watch_data(data) 1000 C.destroy_watch_data(data)
1001 sendEvent(watchId, event) 1001 sendEvent(watchId, event)
1002 } 1002 }
1003 } 1003 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b