You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@seatunnel.apache.org by ki...@apache.org on 2022/07/25 12:42:47 UTC

[incubator-seatunnel] branch CalvinKirs-patch-1 created (now 009c7fc82)

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

kirs pushed a change to branch CalvinKirs-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git


      at 009c7fc82 [CI]Ignore the check when the deadlink-check status code is 403

This branch includes the following new commits:

     new 009c7fc82 [CI]Ignore the check when the deadlink-check status code is 403

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-seatunnel] 01/01: [CI]Ignore the check when the deadlink-check status code is 403

Posted by ki...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kirs pushed a commit to branch CalvinKirs-patch-1
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git

commit 009c7fc8215e7b9c91a385f87ded007a27082db9
Author: Kirs <ki...@apache.org>
AuthorDate: Mon Jul 25 20:42:43 2022 +0800

    [CI]Ignore the check when the deadlink-check status code is 403
    
    Some websites will judge the robot, so it may return a 403 error, but it is actually accessible.
---
 .dlc.json | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.dlc.json b/.dlc.json
index 8c7ba9ed0..b638ba401 100644
--- a/.dlc.json
+++ b/.dlc.json
@@ -29,6 +29,7 @@
   "aliveStatusCodes": [
     0,
     200,
-    401
+    401,
+    403
   ]
 }