Skip to content

Commit

Permalink
use current branch to fetch schema
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed Jan 2, 2024
1 parent 283544b commit 67bdf89
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/cassandra/ingest_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ if [ ! -z "$3" ]; then
fi
MOCK_CMD="docker exec $CASSANDRA_MOCK cqlsh"

TAG=develop
ETHTAG=develop
# TAG=develop
# ETHTAG=develop

TAG=`git rev-parse --abbrev-ref HEAD`
ETHTAG=`git rev-parse --abbrev-ref HEAD`

if [ -z "$ORGANIZATION" ]; then
echo 'Please set env var $ORGANIZATION'
Expand Down

0 comments on commit 67bdf89

Please sign in to comment.