This commit is contained in:
hong-revo 2018-05-24 21:32:21 +10:00
Родитель 2cd0998c4b
Коммит 2dbe553c10
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -49,7 +49,7 @@ blob_container.blob_endpoint <- function(endpoint, name)
print.blob_container <- function(object, ...)
{
cat("Azure blob container '", object$name, "'\n", sep="")
cat(sprintf("URL: %s\n", file.path(object$endpoint$url, object$name)))
cat(sprintf("URL: %s\n", paste0(object$endpoint$url, object$name)))
if(!is_empty(object$endpoint$key))
cat("Access key: <hidden>\n")
else cat("Access key: <none supplied>\n")

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

@ -47,7 +47,7 @@ file_share.file_endpoint <- function(endpoint, name)
print.file_share <- function(object, ...)
{
cat("Azure file share '", object$name, "'\n", sep="")
cat(sprintf("URL: %s\n", file.path(object$endpoint$url, object$name)))
cat(sprintf("URL: %s\n", paste0(object$endpoint$url, object$name)))
if(!is_empty(object$endpoint$key))
cat("Access key: <hidden>\n")
else cat("Access key: <none supplied>\n")