From c8b8567445bfc6ba132eb297d13815a6c567fc76 Mon Sep 17 00:00:00 2001 From: haya14busa Date: Sat, 21 Sep 2019 10:01:04 +0000 Subject: [PATCH] doghouse: Do not pass nil TransactionOption https://godoc.org/cloud.google.com/go/datastore#Client.RunInTransaction --- doghouse/server/storage/installation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doghouse/server/storage/installation.go b/doghouse/server/storage/installation.go index a1633b921f..eaca9ce96f 100644 --- a/doghouse/server/storage/installation.go +++ b/doghouse/server/storage/installation.go @@ -57,7 +57,7 @@ func (g *GitHubInstallationDatastore) Put(ctx context.Context, inst *GitHubInsta return err } return nil // Do nothing. - }, nil) + }) return err }