Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions litellm/proxy/prisma_migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,8 @@
) # Log stderr

# Run the Prisma db push command
verbose_proxy_logger.info("Running 'prisma db push --accept-data-loss'...")
result = subprocess.run(
["prisma", "db", "push", "--accept-data-loss"], capture_output=True, text=True
)
verbose_proxy_logger.info("Running 'prisma db push'...")
result = subprocess.run(["prisma", "db", "push"], capture_output=True, text=True)
verbose_proxy_logger.info(f"'prisma db push' stdout: {result.stdout}") # Log stdout
exit_code = result.returncode

Expand Down
Loading