[ARVADOS] updated: 1.3.0-2247-g44bd1f56f

Git user git at public.arvados.org
Thu Mar 5 18:20:41 UTC 2020


Summary of changes:
 sdk/go/arvados/container.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

       via  44bd1f56f64b6b587e13844945830717e2630e6b (commit)
      from  d11eb815d1722e50cf5308dc6e9d99e93d3228b7 (commit)

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 44bd1f56f64b6b587e13844945830717e2630e6b
Author: Tom Clegg <tom at tomclegg.ca>
Date:   Wed Mar 4 17:15:10 2020 -0500

    Fix type of ContainerRequestState consts.
    
    No issue #
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at tomclegg.ca>

diff --git a/sdk/go/arvados/container.go b/sdk/go/arvados/container.go
index 653312d86..a7edddaa3 100644
--- a/sdk/go/arvados/container.go
+++ b/sdk/go/arvados/container.go
@@ -121,7 +121,7 @@ const (
 type ContainerRequestState string
 
 const (
-	ContainerRequestStateUncomitted = ContainerState("Uncommitted")
-	ContainerRequestStateCommitted  = ContainerState("Committed")
-	ContainerRequestStateFinal      = ContainerState("Final")
+	ContainerRequestStateUncomitted = ContainerRequestState("Uncommitted")
+	ContainerRequestStateCommitted  = ContainerRequestState("Committed")
+	ContainerRequestStateFinal      = ContainerRequestState("Final")
 )

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list