Skip to content

Commit 835cb46

Browse files
committed
Removing timeout
1 parent f0c0162 commit 835cb46

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

compose/fastapi/migrate

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ case "${1:-}" in
2424
;;
2525
arbitrary)
2626
echo 'Applying migrations for arbitrary servers'
27-
timeout 300 alembic -c alembic_arbitrary.ini upgrade head
27+
alembic -c alembic_arbitrary.ini upgrade head
2828
;;
2929
all)
3030
echo 'Applying migrations for Mindlogger backend'
31-
timeout 300 alembic upgrade head
31+
alembic upgrade head
3232
echo 'Applying migrations for arbitrary servers'
33-
timeout 300 alembic -c alembic_arbitrary.ini upgrade head
33+
alembic -c alembic_arbitrary.ini upgrade head
3434
;;
3535
*)
3636
echo 'Applying migrations for Mindlogger backend'
37-
timeout 300 alembic upgrade head
37+
alembic upgrade head
3838
;;
3939
esac

0 commit comments

Comments
 (0)