Repository: incubator-htrace Updated Branches: refs/heads/master bbe0c6c87 -> d42ebacd7
HTRACE-30: fix go1.4 issue (cmccabe) Project: http://git-wip-us.apache.org/repos/asf/incubator-htrace/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-htrace/commit/d42ebacd Tree: http://git-wip-us.apache.org/repos/asf/incubator-htrace/tree/d42ebacd Diff: http://git-wip-us.apache.org/repos/asf/incubator-htrace/diff/d42ebacd Branch: refs/heads/master Commit: d42ebacd7b0ac414a3d30312bf2ad2bd5438fe69 Parents: bbe0c6c Author: Colin P. Mccabe <[email protected]> Authored: Mon Jan 5 10:04:35 2015 -0800 Committer: Colin P. Mccabe <[email protected]> Committed: Mon Jan 5 10:04:35 2015 -0800 ---------------------------------------------------------------------- htrace-core/src/go/src/org/apache/htrace/htrace/cmd.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-htrace/blob/d42ebacd/htrace-core/src/go/src/org/apache/htrace/htrace/cmd.go ---------------------------------------------------------------------- diff --git a/htrace-core/src/go/src/org/apache/htrace/htrace/cmd.go b/htrace-core/src/go/src/org/apache/htrace/htrace/cmd.go index c1ef249..6c26315 100644 --- a/htrace-core/src/go/src/org/apache/htrace/htrace/cmd.go +++ b/htrace-core/src/go/src/org/apache/htrace/htrace/cmd.go @@ -64,7 +64,7 @@ func main() { case findChildren.FullCommand(): os.Exit(doFindChildren((*addr).String(), *parentSpanId, *childLim)) case writeSpans.FullCommand(): - os.Exit(doWriteSpans(addr.String(), *spanJson)) + os.Exit(doWriteSpans((*addr).String(), *spanJson)) } app.UsageErrorf(os.Stderr, "You must supply a command to run.")
