Skip to content

Commit a865b75

Browse files
committed
chore: update doctrine cmd fix
Change-Id: Ib7a493c6f7d2b71513a81f18c25b6e05e5b95d63
1 parent e466974 commit a865b75

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/push.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ jobs:
102102
php artisan db:create_test_db --schema=config
103103
php artisan db:create_test_db --schema=model
104104
php artisan doctrine:migrations:migrate --no-interaction --em model
105-
./update_doctrine.sh
106105
echo "running OAuth2SummitApiTest"
107106
vendor/bin/phpunit --filter "OAuth2SummitApiTest" --log-junit results_summit_api_test.xml
108107
echo "running OAuth2SummitEventsApiTest"

app/Services/Utils/DoctrineTransactionService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public function transaction(Closure $callback, int $isolationLevel = Transactio
117117
continue;
118118
}
119119
Log::warning("DoctrineTransactionService::transaction rolling back TX");
120-
Log::error($ex);
120+
Log::warning($ex);
121121
throw $ex;
122122
}
123123
}

0 commit comments

Comments
 (0)