You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by se...@apache.org on 2021/11/09 23:13:17 UTC

[whimsy] branch master updated: Ignore trafficcontrol bugfix message

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

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git


The following commit(s) were added to refs/heads/master by this push:
     new 0fdd99e  Ignore trafficcontrol bugfix message
0fdd99e is described below

commit 0fdd99e0912c66cea6e5811b7540e20f6e87c1ac
Author: Sebb <se...@apache.org>
AuthorDate: Tue Nov 9 23:13:10 2021 +0000

    Ignore trafficcontrol bugfix message
---
 tools/download_check.rb | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tools/download_check.rb b/tools/download_check.rb
index b4871b9..0901bea 100755
--- a/tools/download_check.rb
+++ b/tools/download_check.rb
@@ -371,7 +371,10 @@ def _checkDownloadPage(path, tlp, version)
         if n =~ %r{API |/api/|-docs-} # snapshot docs Datasketches (Flink)?
           W "Found reference to NIGHTLY or SNAPSHOT docs?: #{n}"
         else
-          E "Found reference to NIGHTLY or SNAPSHOT builds: #{n}"
+          # ignore trafficcontrol bugfix message
+          unless n.include? "Fixed TO log warnings when generating snapshots"
+            E "Found reference to NIGHTLY or SNAPSHOT builds: #{n}"
+          end
         end
         break
       end