[ARVADOS-WORKBENCH2] updated: 2.1.0-128-gc739849a
Git user
git at public.arvados.org
Fri Dec 11 22:27:45 UTC 2020
Summary of changes:
src/services/collection-service/collection-service.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via c739849abc9ca651e839adbe0f6f091f7102ad76 (commit)
from 2cabc3d906f0e1b926072187834fff181656d6e5 (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 c739849abc9ca651e839adbe0f6f091f7102ad76
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date: Fri Dec 11 19:26:36 2020 -0300
17152: Avoids returning for code consistency reasons.
Other webdav funcs don't return values, and there's no client code expecting
an answer from that func.
Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>
diff --git a/src/services/collection-service/collection-service.ts b/src/services/collection-service/collection-service.ts
index 92273933..04c01a11 100644
--- a/src/services/collection-service/collection-service.ts
+++ b/src/services/collection-service/collection-service.ts
@@ -70,7 +70,7 @@ export class CollectionService extends TrashableResourceService<CollectionResour
`c=${collectionUuid}${oldPath}`,
`c=${collectionUuid}${encodeURI(newPath)}`
);
- return await this.update(collectionUuid, { preserveVersion: true });
+ await this.update(collectionUuid, { preserveVersion: true });
}
extendFileURL = (file: CollectionDirectory | CollectionFile) => {
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list