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

Unified Diff: server/internal/logdog/archivist/archivist.go

Issue 1838803002: LogDog: BigTable batching schema. (Closed) Base URL: https://github.com/luci/luci-go@recordio-split
Patch Set: Minor comments and quality of code tweaks. Created 4 years, 9 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 | « server/cmd/logdog_collector/main.go ('k') | server/internal/logdog/archivist/archivist_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: server/internal/logdog/archivist/archivist.go
diff --git a/server/internal/logdog/archivist/archivist.go b/server/internal/logdog/archivist/archivist.go
index 925e053a039fed0f95f1e05812535f843ef627ee..1d79af1d0225532985066c380010d92f0ad693f4 100644
--- a/server/internal/logdog/archivist/archivist.go
+++ b/server/internal/logdog/archivist/archivist.go
@@ -355,7 +355,7 @@ func (s *storageSource) bufferEntries(start types.MessageIndex) error {
Path: s.path,
Index: start,
}
- return s.st.Get(&req, func(idx types.MessageIndex, d []byte) bool {
+ return s.st.Get(req, func(idx types.MessageIndex, d []byte) bool {
le := logpb.LogEntry{}
if err := proto.Unmarshal(d, &le); err != nil {
log.Fields{
« no previous file with comments | « server/cmd/logdog_collector/main.go ('k') | server/internal/logdog/archivist/archivist_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698