This is an automated email from the ASF dual-hosted git repository. xiangying pushed a commit to branch verify_release in repository https://gitbox.apache.org/repos/asf/pulsar-site.git
commit bff370e3b0c3f93496c5e415ac4334316040cbd2 Author: xiangying <[email protected]> AuthorDate: Sat Mar 4 12:04:16 2023 +0800 [improve][doc] Make the release verification process clearer --- contribute/validate-release-candidate.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/contribute/validate-release-candidate.md b/contribute/validate-release-candidate.md index 1b58e29bcad..fe3bb2d7841 100644 --- a/contribute/validate-release-candidate.md +++ b/contribute/validate-release-candidate.md @@ -342,13 +342,13 @@ In the cqlsh, create the `pulsar_test_keyspace` keyspace and the `pulsar_test_ta cqlsh> CREATE KEYSPACE pulsar_test_keyspace WITH replication = {'class':'SimpleStrategy', 'replication_factor':1}; cqlsh> USE pulsar_test_keyspace; cqlsh:pulsar_test_keyspace> CREATE TABLE pulsar_test_table (key text PRIMARY KEY, col text); - +cqlsh:pulsar_test_keyspace> exit ``` 3. Prepare a cassandra sink yaml file and put it under examples directory as `cassandra-sink.yml`. ```shell -cat examples/cassandra-sink.yml +vim examples/cassandra-sink.yml ``` The content should be: @@ -498,6 +498,7 @@ cqlsh:pulsar_test_keyspace> select * from pulsar_test_table; key-10 | key-10 (11 rows) +cqlsh:pulsar_test_keyspace> exit ``` 8. Delete the sink.
