This commit is contained in:
Hong Ooi 2020-01-21 19:29:49 +11:00
Родитель 3a6ec5419e
Коммит c9c74f28be
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -6,7 +6,7 @@ utils::globalVariables(c("self", "private", "pool"))
.onLoad <- function(libname, pkgname)
{
options(azure_api_version="2019-08-01")
options(azure_api_version="2019-10-01")
options(azure_api_mgmt_version="2016-09-01")
options(azure_roledef_api_version="2018-01-01-preview")
options(azure_roleasn_api_version="2018-12-01-preview")

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

@ -128,7 +128,7 @@ find_resource_host <- function(token)
else url <- httr::parse_url(token$resource) # v1 token is the easy case
if(is.null(url$scheme))
stop("Could not find Graph host URL", call.=FALSE)
stop("Could not find Resource Manager host URL", call.=FALSE)
url$path <- NULL
url
}