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

Unified Diff: logdog/client/cmd/logdog_butler/stream.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
« no previous file with comments | « logdog/client/cmd/logdog_annotee/filesystemClient.go ('k') | logdog/common/viewer/url.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: logdog/client/cmd/logdog_butler/stream.go
diff --git a/logdog/client/cmd/logdog_butler/stream.go b/logdog/client/cmd/logdog_butler/stream.go
index 9a3733a1407b40540dbf0f5ea8804afd25eafb86..f91f4cb61596d9b78c9311e080e35bbce059b43d 100644
--- a/logdog/client/cmd/logdog_butler/stream.go
+++ b/logdog/client/cmd/logdog_butler/stream.go
@@ -39,10 +39,10 @@ func (s *streamConfig) addFlags(fs *flag.FlagSet) {
}
// Converts command-line parameters into a stream.Config.
-func (s streamConfig) properties() streamproto.Properties {
+func (s streamConfig) properties() *streamproto.Properties {
if s.ContentType == "" {
// Choose content type based on format.
s.ContentType = string(s.Type.DefaultContentType())
}
- return *s.Properties()
+ return s.Properties()
}
« no previous file with comments | « logdog/client/cmd/logdog_annotee/filesystemClient.go ('k') | logdog/common/viewer/url.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698