Skip to content

Commit 26d2f40

Browse files
committed
fix workflow
1 parent e6cad63 commit 26d2f40

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/functional-tests.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,10 @@ jobs:
182182
- name: Create test dataverse for scope-level queries
183183
run: |
184184
echo "Creating test dataverse testdb.testscope for scope-level functional tests"
185-
curl -sSf -k -u "${CBDINO_USER}:${CBDINO_PASS}" \
186-
"${CBDINO_CONNSTR}/api/v1/request" \
187-
--data-urlencode 'statement=CREATE DATAVERSE testdb.testscope IF NOT EXISTS;'
185+
curl -sS -k -u "${CBDINO_USER}:${CBDINO_PASS}" \
186+
-H "Content-Type: application/json" \
187+
-d '{"statement": "CREATE DATAVERSE testdb.testscope IF NOT EXISTS;"}' \
188+
"${CBDINO_CONNSTR}/api/v1/request"
188189
echo ""
189190
echo "Dataverse created successfully"
190191

0 commit comments

Comments
 (0)