[ARVADOS] updated: 2.1.0-282-gdad86790c
Git user
git at public.arvados.org
Thu Jan 14 21:52:59 UTC 2021
Summary of changes:
sdk/go/arvadostest/api.go | 4 ++++
services/api/app/models/container.rb | 4 ++--
2 files changed, 6 insertions(+), 2 deletions(-)
via dad86790c5f3edbcf38702542ba46cb7a9e7f42a (commit)
via 4f45c40368659d6dbf357cecfc37622c1722090a (commit)
from 35b422b074dd06dfea090a65b6072b09600302ff (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 dad86790c5f3edbcf38702542ba46cb7a9e7f42a
Author: Tom Clegg <tom at curii.com>
Date: Thu Jan 14 16:52:31 2021 -0500
17170: Drop gateway_address from searchable columns.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>
diff --git a/services/api/app/models/container.rb b/services/api/app/models/container.rb
index a4da593ec..52fc79e2c 100644
--- a/services/api/app/models/container.rb
+++ b/services/api/app/models/container.rb
@@ -102,11 +102,11 @@ class Container < ArvadosModel
end
def self.full_text_searchable_columns
- super - ["secret_mounts", "secret_mounts_md5", "runtime_token"]
+ super - ["secret_mounts", "secret_mounts_md5", "runtime_token", "gateway_address"]
end
def self.searchable_columns *args
- super - ["secret_mounts_md5", "runtime_token"]
+ super - ["secret_mounts_md5", "runtime_token", "gateway_address"]
end
def logged_attributes
commit 4f45c40368659d6dbf357cecfc37622c1722090a
Author: Tom Clegg <tom at curii.com>
Date: Thu Jan 14 16:50:26 2021 -0500
17170: Add missing method to APIStub.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom at curii.com>
diff --git a/sdk/go/arvadostest/api.go b/sdk/go/arvadostest/api.go
index 039d7ae11..2b7854947 100644
--- a/sdk/go/arvadostest/api.go
+++ b/sdk/go/arvadostest/api.go
@@ -105,6 +105,10 @@ func (as *APIStub) ContainerUnlock(ctx context.Context, options arvados.GetOptio
as.appendCall(ctx, as.ContainerUnlock, options)
return arvados.Container{}, as.Error
}
+func (as *APIStub) ContainerSSH(ctx context.Context, options arvados.ContainerSSHOptions) (arvados.ContainerSSHConnection, error) {
+ as.appendCall(ctx, as.ContainerSSH, options)
+ return arvados.ContainerSSHConnection{}, as.Error
+}
func (as *APIStub) SpecimenCreate(ctx context.Context, options arvados.CreateOptions) (arvados.Specimen, error) {
as.appendCall(ctx, as.SpecimenCreate, options)
return arvados.Specimen{}, as.Error
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list