Skip to content

Commit 0c3430b

Browse files
authored
Merge pull request #8 from postgres-ai/fix-migration-status-wording
fix: migration status wording
2 parents 8c10eb8 + bbb43d0 commit 0c3430b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

entrypoint.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ response_code=$(curl --show-error --silent --location --request POST "${DLMC_CI_
3939
jq . response.json
4040

4141
if [[ $response_code -ne 200 ]]; then
42-
echo "Invalid status code given: ${response_code}"
42+
echo "Migration status code: ${response_code}"
4343
exit 1
4444
fi
4545

4646
status=$(jq -r '.session.result.status' response.json)
4747

4848
if [[ $status != "passed" ]]; then
49-
echo "Invalid status given: ${status}"
49+
echo "Migration status: ${status}"
5050
exit 1
5151
fi
5252

0 commit comments

Comments
 (0)