Merge "veyron/services/security/simpledischarged/"
diff --git a/runtimes/google/ipc/stream/proxy/proxy.go b/runtimes/google/ipc/stream/proxy/proxy.go
index bab175e..e0022d5 100644
--- a/runtimes/google/ipc/stream/proxy/proxy.go
+++ b/runtimes/google/ipc/stream/proxy/proxy.go
@@ -401,7 +401,7 @@
// flow). This optimization is left an as excercise to the interested.
for cid, bytes := range counters {
srcVCI := cid.VCI()
- if vc := process.servers[srcVCI]; vc != nil {
+ if vc := process.ServerVC(srcVCI); vc != nil {
vc.ReleaseCounters(cid.Flow(), bytes)
continue
}
diff --git a/services/mgmt/node/impl/invoker.go b/services/mgmt/node/impl/invoker.go
index 819bf73..77744a3 100644
--- a/services/mgmt/node/impl/invoker.go
+++ b/services/mgmt/node/impl/invoker.go
@@ -420,6 +420,7 @@
vlog.Errorf("WriteFile(%v) failed: %v", path, err)
return errOperationFailed
}
+ vlog.VI(1).Infof("%s", output)
return nil
}