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

Unified Diff: appengine/logdog/coordinator/endpoints/logs/get.go

Issue 1909943003: LogDog: Add project support to Storage. (Closed) Base URL: https://github.com/luci/luci-go@logdog-project-coordinator-services
Patch Set: Rebase? Created 4 years, 8 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 | « no previous file | server/logdog/storage/archive/storage.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/logdog/coordinator/endpoints/logs/get.go
diff --git a/appengine/logdog/coordinator/endpoints/logs/get.go b/appengine/logdog/coordinator/endpoints/logs/get.go
index 2226cdff7a33e490d2e4a54bb59965de32c58362..dd84d9e3100dcf6d9b2c51f4ce0f9cd1eb49dfde 100644
--- a/appengine/logdog/coordinator/endpoints/logs/get.go
+++ b/appengine/logdog/coordinator/endpoints/logs/get.go
@@ -289,7 +289,7 @@ func getHead(c context.Context, req *logdog.GetRequest, st storage.Storage, p ty
func getTail(c context.Context, st storage.Storage, p types.StreamPath) ([][]byte, error) {
var data []byte
err := retry.Retry(c, retry.TransientOnly(retry.Default), func() (err error) {
- data, _, err = st.Tail(p)
+ data, _, err = st.Tail("", p)
return
}, func(err error, delay time.Duration) {
log.Fields{
« no previous file with comments | « no previous file | server/logdog/storage/archive/storage.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698