Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(826)

Unified Diff: logdog/client/butlerlib/streamclient/local.go

Issue 2456953003: LogDog: Update client/bootstrap to generate URLs. (Closed)
Patch Set: Winders Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: logdog/client/butlerlib/streamclient/local.go
diff --git a/logdog/client/butlerlib/streamclient/local.go b/logdog/client/butlerlib/streamclient/local.go
index c9114db40b4809982c3928d06348e9835684ec32..cbfda96251f90de577c8fcbde44b460390bb2b5f 100644
--- a/logdog/client/butlerlib/streamclient/local.go
+++ b/logdog/client/butlerlib/streamclient/local.go
@@ -38,12 +38,12 @@ func (c *localClient) NewStream(f streamproto.Flags) (s Stream, err error) {
props := f.Properties()
stream := streamImpl{
- Properties: props,
WriteCloser: pw,
+ props: props,
}
// Add the Stream to the Butler.
- if err = c.AddStream(pr, *props); err != nil {
+ if err = c.AddStream(pr, props); err != nil {
return
}
return &stream, nil
« no previous file with comments | « logdog/client/butlerlib/streamclient/client_test.go ('k') | logdog/client/butlerlib/streamclient/registry.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698