This is an automated email from the ASF dual-hosted git repository.

dongjoon pushed a commit to branch branch-2.3
in repository https://gitbox.apache.org/repos/asf/spark.git


The following commit(s) were added to refs/heads/branch-2.3 by this push:
     new 8731194  [SPARK-28766][R][DOC] Fix CRAN incoming feasibility warning 
on invalid URL
8731194 is described below

commit 8731194bf9a70a2fd2c2f5751b4fa5502d377136
Author: Dongjoon Hyun <dh...@apple.com>
AuthorDate: Sat Aug 17 11:11:36 2019 -0700

    [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 #25483 from dongjoon-hyun/SPARK-28766.
    
    Authored-by: Dongjoon Hyun <dh...@apple.com>
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
    (cherry picked from commit 5756a47a9fafca2d0b31de2b2374429f73b6e5e2)
    Signed-off-by: Dongjoon Hyun <dh...@apple.com>
---
 R/pkg/R/context.R | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/R/pkg/R/context.R b/R/pkg/R/context.R
index 363dc3c..8638c14 100644
--- a/R/pkg/R/context.R
+++ b/R/pkg/R/context.R
@@ -321,7 +321,8 @@ setCheckpointDirSC <- function(sc, dirName) {
 #'
 #' A directory can be given if the recursive option is set to true.
 #' Currently directories are only supported for Hadoop-supported filesystems.
-#' Refer Hadoop-supported filesystems at 
\url{https://wiki.apache.org/hadoop/HCFS}.
+#' Refer Hadoop-supported filesystems at
+#' \url{https://cwiki.apache.org/confluence/display/HADOOP2/HCFS}.
 #'
 #' @rdname spark.addFile
 #' @param path The path of the file to be added


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org
For additional commands, e-mail: commits-h...@spark.apache.org

Reply via email to