Skip to content

Commit b38f1e3

Browse files
dongjoon-hyunkai-chi
authored andcommitted
[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> (cherry picked from commit 5756a47) Signed-off-by: Dongjoon Hyun <dhyun@apple.com>
1 parent 2ce6984 commit b38f1e3

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
@@ -321,7 +321,8 @@ setCheckpointDirSC <- function(sc, dirName) {
321321
#'
322322
#' A directory can be given if the recursive option is set to true.
323323
#' Currently directories are only supported for Hadoop-supported filesystems.
324-
#' Refer Hadoop-supported filesystems at \url{https://wiki.apache.org/hadoop/HCFS}.
324+
#' Refer Hadoop-supported filesystems at
325+
#' \url{https://cwiki.apache.org/confluence/display/HADOOP2/HCFS}.
325326
#'
326327
#' Note: A path can be added only once. Subsequent additions of the same path are ignored.
327328
#'

0 commit comments

Comments
 (0)