Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
first check fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
hongooi73 committed Apr 5, 2020
1 parent 6b86dfe commit dd98819
Show file tree
Hide file tree
Showing 8 changed files with 114 additions and 51 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
^\.Rproj\.user$
CONTRIBUTING.md
^LICENSE\.md$
^SECURITY\.md$
azure-pipelines.yml
9 changes: 0 additions & 9 deletions CODE_OF_CONDUCT.md

This file was deleted.

28 changes: 14 additions & 14 deletions README.md → CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

# Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.

# Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.

When you submit a pull request, a CLA bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
2 changes: 2 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,7 @@ Imports:
openssl,
xml2,
httr
Suggests:
testthat
Roxygen: list(markdown=TRUE)
RoxygenNote: 7.1.0
1 change: 1 addition & 0 deletions R/AzureQstor.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#' @import AzureRMR
NULL

utils::globalVariables(c("self", "private"))

.onLoad <- function(libname, pkgname)
{
Expand Down
4 changes: 2 additions & 2 deletions R/container.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#' @param api_version If an endpoint object is not supplied, the storage API version to use when interacting with the host. Currently defaults to `"2019-07-07"`.
#' @param name The name of the queue to get, create, or delete.
#' @param confirm For deleting a queue, whether to ask for confirmation.
#' @param x For the print method, a queue object.
#' @param ... Further arguments passed to lower-level functions.
#' @rdname queue
#' @export
storage_queue <- function(endpoint, ...)
{
Expand All @@ -21,7 +21,7 @@ storage_queue.character <- function(endpoint, key=NULL, token=NULL, sas=NULL,
api_version=getOption("azure_storage_api_version"),
...)
{
do.call(storage_queue, generate_endpoint(endpoint, key, token, sas, api_version))
do.call(storage_queue, generate_endpoint_container(endpoint, key, token, sas, api_version))
}

#' @rdname queue
Expand Down
94 changes: 94 additions & 0 deletions man/queue.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 0 additions & 26 deletions man/storage_queue.Rd

This file was deleted.

0 comments on commit dd98819

Please sign in to comment.