This commit is contained in:
Hong Ooi 2021-12-15 18:42:07 +11:00
Родитель c9776008af
Коммит 146b321833
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -38,9 +38,9 @@
#' @export
do_container_op <- function(container, operation="", options=list(), headers=list(), http_verb="GET", ...)
{
operation <- if(nchar(operation) > 0)
operation <- if(substr(operation, 1, 1) != "/")
paste0(container$name, "/", operation)
else container$name
else paste0(container$name, operation)
call_storage_endpoint(container$endpoint, operation, options=options, headers=headers, http_verb=http_verb, ...)
}