[ARVADOS] updated: 1.3.0-2815-gc71daa262

Git user git at public.arvados.org
Mon Aug 3 16:04:59 UTC 2020


Summary of changes:
 services/keepstore/s3aws_volume_test.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

  discards  ba2e24710fb7c6d8236f81ee79ca30ca7dcbcf9c (commit)
       via  c71daa26278eaf3d09ce20f563f985d43c9799fb (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (ba2e24710fb7c6d8236f81ee79ca30ca7dcbcf9c)
            \
             N -- N -- N (c71daa26278eaf3d09ce20f563f985d43c9799fb)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit c71daa26278eaf3d09ce20f563f985d43c9799fb
Author: Ward Vandewege <ward at curii.com>
Date:   Mon Aug 3 11:14:29 2020 -0400

    10477: Fix timezone handling in s3aws tests, to avoid issues when the tests are
    run in non-UTC environments.
    
    Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>

diff --git a/services/keepstore/s3aws_volume_test.go b/services/keepstore/s3aws_volume_test.go
index 57d81dbe0..97045a660 100644
--- a/services/keepstore/s3aws_volume_test.go
+++ b/services/keepstore/s3aws_volume_test.go
@@ -41,9 +41,9 @@ type s3AWSFakeClock struct {
 
 func (c *s3AWSFakeClock) Now() time.Time {
 	if c.now == nil {
-		return time.Now()
+		return time.Now().UTC()
 	}
-	return *c.now
+	return c.now.UTC()
 }
 
 func (c *s3AWSFakeClock) Since(t time.Time) time.Duration {

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list