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

Unified Diff: server/internal/logdog/archivist/archivist_test.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/internal/logdog/archivist/archivist.go ('k') | server/internal/logdog/collector/collector.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: server/internal/logdog/archivist/archivist_test.go
diff --git a/server/internal/logdog/archivist/archivist_test.go b/server/internal/logdog/archivist/archivist_test.go
index 413cceb07a12ca81c039914601463e291a911336..12daac169e7ca7d70f8181b69d077782b5ac5e8d 100644
--- a/server/internal/logdog/archivist/archivist_test.go
+++ b/server/internal/logdog/archivist/archivist_test.go
@@ -198,10 +198,10 @@ func TestHandleArchive(t *testing.T) {
panic(err)
}
- err = st.Put(&storage.PutRequest{
- Path: desc.Path(),
- Index: types.MessageIndex(v),
- Value: d,
+ err = st.Put(storage.PutRequest{
+ Path: desc.Path(),
+ Index: types.MessageIndex(v),
+ Values: [][]byte{d},
})
if err != nil {
panic(err)
« no previous file with comments | « server/internal/logdog/archivist/archivist.go ('k') | server/internal/logdog/collector/collector.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698