BIND 10 trac2676, updated. e4aaeac97a46220f8f333ae8e1e5b39611995786 [2676] Typo fix
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Feb 20 08:17:18 UTC 2013
The branch, trac2676 has been updated
via e4aaeac97a46220f8f333ae8e1e5b39611995786 (commit)
via 75862a73a3498055dc8333ab25edb7130a5d492d (commit)
from 30aa2837a02a8926103dd73668a2572d70555658 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit e4aaeac97a46220f8f333ae8e1e5b39611995786
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date: Wed Feb 20 09:16:02 2013 +0100
[2676] Typo fix
commit 75862a73a3498055dc8333ab25edb7130a5d492d
Author: Michal 'vorner' Vaner <michal.vaner at nic.cz>
Date: Wed Feb 20 09:15:41 2013 +0100
[2676] Don't crash on RPCError
-----------------------------------------------------------------------
Summary of changes:
src/bin/stats/stats.py.in | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/bin/stats/stats.py.in b/src/bin/stats/stats.py.in
index faa80d8..2711f2d 100755
--- a/src/bin/stats/stats.py.in
+++ b/src/bin/stats/stats.py.in
@@ -260,7 +260,7 @@ class Stats:
except isc.config.RPCError:
# TODO: Is it OK to just pass? As part of refactoring, preserving
# the original behaviour.
- pass
+ value = None
if type(value) is list:
# NOTE: For example, the "show_processes" command
# of Init is assumed to return the response in this
@@ -300,8 +300,8 @@ class Stats:
cmd = isc.config.ccsession.create_command(
"getstats", None) # no argument
# Not using rpc_call here. We first send a bunch of commands, then
- # collect all the answers. This eliminates some of the round-time
- # trips. Unfortunately, rpc_call is not flexible enough to allow
+ # collect all the answers. This eliminates some of the round-trip
+ # times. Unfortunately, rpc_call is not flexible enough to allow
# this, though the future rpc_call_async could.
seq = self.cc_session.group_sendmsg(cmd, module_name,
want_answer=True)
More information about the bind10-changes
mailing list