Skip to content

Commit

Permalink
feat: Smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Jan 24, 2024
1 parent 4605b10 commit edd12a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/smoke-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: |
echo "Checking Clickhouse for data from all sentries"
all_sentries=($(kurtosis enclave inspect xatu | grep cl- | grep http | awk '{ print $2 }' | grep -v validator))
all_sentries=($(kurtosis enclave inspect xatu | grep cl- | grep http | awk '{ print $2 }' | grep -v validator | sed 's/^cl-//'))
tables=(
"beacon_api_eth_v1_events_attestation"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
ALTER TABLE default.beacon_api_eth_v1_events_attestation_local ON CLUSTER '{cluster}'
ALTER TABLE default.beacon_p2p_attestation_local ON CLUSTER '{cluster}'
DROP COLUMN signature;

ALTER TABLE default.beacon_api_eth_v1_events_attestation ON CLUSTER '{cluster}'
ALTER TABLE default.beacon_p2p_attestation ON CLUSTER '{cluster}'
DROP COLUMN signature;


ALTER TABLE default.beacon_p2p_attestation_local ON CLUSTER '{cluster}'
ALTER TABLE default.beacon_api_eth_v1_events_attestation_local ON CLUSTER '{cluster}'
DROP COLUMN signature;

ALTER TABLE default.beacon_p2p_attestation ON CLUSTER '{cluster}'
ALTER TABLE default.beacon_api_eth_v1_events_attestation ON CLUSTER '{cluster}'
DROP COLUMN signature;

0 comments on commit edd12a7

Please sign in to comment.