Merge pull request #279 from jeromatron/main

Fixed a couple of typos with http-tabular
This commit is contained in:
Jonathan Shook 2021-03-11 15:44:18 -06:00 committed by GitHub
commit e498de7f37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,13 +98,13 @@ blocks:
params: params:
ratio: 5 ratio: 5
statements: statements:
- main-select: GET /v2/keyspaces/<<keyspace:baselines>>/<<table:tabular>>?where=E[[{"part":{"$eq":"{part_layout}"}},"page-size":{"$eq":"{limit}"}}]] - main-select: GET http://<<stargate_host:stargate>>:<<stargate_port:8082>>/v2/keyspaces/<<keyspace:baselines>>/<<table:tabular>>/{part_read}&page-size={limit}
Accept: "application/json" Accept: "application/json"
X-Cassandra-Request-Id: "{request_id}" X-Cassandra-Request-Id: "{request_id}"
X-Cassandra-Token: "<<auth_token:my_auth_token>>" X-Cassandra-Token: "<<auth_token:my_auth_token>>"
Content-Type: "application/json" Content-Type: "application/json"
tags: tags:
name: main-select name: main-select
- name: main-write - name: main-write
tags: tags:
phase: main phase: main
@ -112,16 +112,16 @@ blocks:
params: params:
ratio: 5 ratio: 5
statements: statements:
- main-write: POST http://<<stargate_host:stargate>>:<<stargate_port:8082>>/v2/keyspaces/<<keyspace:baselines>>/<<table:tabular>> - main-write: POST http://<<stargate_host:stargate>>:<<stargate_port:8082>>/v2/keyspaces/<<keyspace:baselines>>/<<table:tabular>>
Accept: "application/json" Accept: "application/json"
X-Cassandra-Request-Id: "{request_id}" X-Cassandra-Request-Id: "{request_id}"
X-Cassandra-Token: "<<auth_token:my_auth_token>>" X-Cassandra-Token: "<<auth_token:my_auth_token>>"
Content-Type: "application/json" Content-Type: "application/json"
body: | body: |
{ {
"part": "{part_write}" "part": "{part_write}",
"clust": "{clust_write}", "clust": "{clust_write}",
"data": "{data_write}" "data": "{data_write}"
} }
tags: tags:
name: main-write name: main-write