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

Unified Diff: client/internal/logdog/butler/bundler/bundler.go

Issue 1970823005: LogDog: Add prefix registration endpoint. (Closed) Base URL: https://github.com/luci/luci-go@logdog-project-archivist-useconfig
Patch Set: Updated patchset dependency Created 4 years, 7 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: client/internal/logdog/butler/bundler/bundler.go
diff --git a/client/internal/logdog/butler/bundler/bundler.go b/client/internal/logdog/butler/bundler/bundler.go
index a9117fe8c7777d17f83b0c04ea80706c15f92e26..94a6234046a628a0ce2654d1b516c0130e8b2ede 100644
--- a/client/internal/logdog/butler/bundler/bundler.go
+++ b/client/internal/logdog/butler/bundler/bundler.go
@@ -26,10 +26,6 @@ type Config struct {
// timing.
Clock clock.Clock
- // Source is the bundle source string to use. This can be empty if there is no
- // source information to include.
- Source string
-
// Project is the project to use.
Project config.ProjectName
// Prefix is the common prefix for this set of streams.
@@ -193,7 +189,6 @@ func (b *Bundler) makeBundles() {
bb = &builder{
size: b.c.MaxBundleSize,
template: logpb.ButlerLogBundle{
- Source: b.c.Source,
Timestamp: google.NewTimestamp(b.getClock().Now()),
Project: string(b.c.Project),
Prefix: string(b.c.Prefix),

Powered by Google App Engine
This is Rietveld 408576698