HBASE-25061 Update default URL to KEYS file in `hbase-vote.sh` (#2416)
Co-authored-by: Viraj Jasani <vjasani@apache.org> Signed-off-by: Sean Busbey <busbey@apache.org> Signed-off-by: Jan Hentschel <jan.hentschel@ultratendency.com> Signed-off-by: Viraj Jasani <vjasani@apache.org>
This commit is contained in:
parent
e386ec566f
commit
5e12c0aae5
|
@ -37,7 +37,7 @@ Usage: ${SCRIPT} -s | --source <url> [-k | --key <signature>] [-f | --keys-file-
|
|||
e.g. https://dist.apache.org/repos/dist/dev/hbase/hbase-<version>RC0/
|
||||
-k | --key '<signature>' A signature of the public key, e.g. 9AD2AE49
|
||||
-f | --keys-file-url '<url>' the URL of the key file, default is
|
||||
http://www.apache.org/dist/hbase/KEYS
|
||||
https://downloads.apache.org/hbase/KEYS
|
||||
-o | --output-dir '</path>' directory which has the stdout and stderr of each verification target
|
||||
-P | list of maven profiles to activate for test UT/IT, i.e. <-P runSmallTests> Defaults to runAllTests
|
||||
__EOF
|
||||
|
@ -103,7 +103,7 @@ BUILD_FROM_SOURCE_PASSED=0
|
|||
UNIT_TEST_PASSED=0
|
||||
|
||||
function download_and_import_keys() {
|
||||
KEY_FILE_URL="${KEY_FILE_URL:-https://www.apache.org/dist/hbase/KEYS}"
|
||||
KEY_FILE_URL="${KEY_FILE_URL:-https://downloads.apache.org/hbase/KEYS}"
|
||||
echo "Obtain and import the publisher key(s) from ${KEY_FILE_URL}"
|
||||
# download the keys file into file KEYS
|
||||
wget -O KEYS "${KEY_FILE_URL}"
|
||||
|
|
|
@ -1160,7 +1160,7 @@ Usage: hbase-vote.sh -s | --source <url> [-k | --key <signature>] [-f | --keys-f
|
|||
e.g. https://dist.apache.org/repos/dist/dev/hbase/hbase-<version>RC0/
|
||||
-k | --key '<signature>' A signature of the public key, e.g. 9AD2AE49
|
||||
-f | --keys-file-url '<url>' the URL of the key file, default is
|
||||
http://www.apache.org/dist/hbase/KEYS
|
||||
https://downloads.apache.org/hbase/KEYS
|
||||
-o | --output-dir '</path>' directory which has the stdout and stderr of each verification target
|
||||
----
|
||||
* If you see any unit test failures, please call out the solo test result and whether it's part of flaky (nightly) tests dashboard, e.g. link:https://builds.apache.org/view/H-L/view/HBase/job/HBase-Find-Flaky-Tests/job/master/lastSuccessfulBuild/artifact/dashboard.html[dashboard of master branch] (please change the test branch accordingly).
|
||||
|
|
|
@ -28,7 +28,7 @@ under the License.
|
|||
<section name="Downloads">
|
||||
<p>The below table lists mirrored release artifacts and their associated hashes and signatures
|
||||
available ONLY at apache.org. The keys used to sign releases can be found in our published
|
||||
<a href="https://www.apache.org/dist/hbase/KEYS">KEYS</a> file. See
|
||||
<a href="https://downloads.apache.org/hbase/KEYS">KEYS</a> file. See
|
||||
<a href="https://www.apache.org/dyn/closer.cgi#verify">Verify The Integrity Of The Files</a> for
|
||||
how to verify your mirrored downloads.
|
||||
</p>
|
||||
|
|
Loading…
Reference in New Issue