Skip to content

Commit 5756a47

Browse files
committed
[SPARK-28766][R][DOC] Fix CRAN incoming feasibility warning on invalid URL
### What changes were proposed in this pull request? This updates an URL in R doc to fix `Had CRAN check errors; see logs`. ### Why are the changes needed? Currently, this invalid link causes a warning during CRAN incoming feasibility. We had better fix this before submitting `3.0.0/2.4.4/2.3.4`. **BEFORE** ``` * checking CRAN incoming feasibility ... NOTE Maintainer: ‘Shivaram Venkataraman <shivaramcs.berkeley.edu>’ Found the following (possibly) invalid URLs: URL: https://wiki.apache.org/hadoop/HCFS (moved to https://cwiki.apache.org/confluence/display/hadoop/HCFS) From: man/spark.addFile.Rd Status: 404 Message: Not Found ``` **AFTER** ``` * checking CRAN incoming feasibility ... Note_to_CRAN_maintainers Maintainer: ‘Shivaram Venkataraman <shivaramcs.berkeley.edu>’ ``` ### Does this PR introduce any user-facing change? No. ### How was this patch tested? Check the warning message during R testing. ``` $ R/install-dev.sh $ R/run-tests.sh ``` Closes apache#25483 from dongjoon-hyun/SPARK-28766. Authored-by: Dongjoon Hyun <dhyun@apple.com> Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
1 parent f7c9de9 commit 5756a47

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

R/pkg/R/context.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@ setCheckpointDirSC <- function(sc, dirName) {
325325
#'
326326
#' A directory can be given if the recursive option is set to true.
327327
#' Currently directories are only supported for Hadoop-supported filesystems.
328-
#' Refer Hadoop-supported filesystems at \url{https://wiki.apache.org/hadoop/HCFS}.
328+
#' Refer Hadoop-supported filesystems at
329+
#' \url{https://cwiki.apache.org/confluence/display/HADOOP2/HCFS}.
329330
#'
330331
#' Note: A path can be added only once. Subsequent additions of the same path are ignored.
331332
#'

0 commit comments

Comments
 (0)