From ab7758840b5af7c31a2acbcfda56251ce10c27d3 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Tue, 13 Aug 2024 18:38:10 -0700 Subject: [PATCH] skip prisma gen step --- litellm/proxy/utils.py | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/litellm/proxy/utils.py b/litellm/proxy/utils.py index 4df037fc3..4237a011b 100644 --- a/litellm/proxy/utils.py +++ b/litellm/proxy/utils.py @@ -844,17 +844,17 @@ class PrismaClient: dname = os.path.dirname(abspath) os.chdir(dname) - try: - subprocess.run(["prisma", "generate"]) - subprocess.run( - ["prisma", "db", "push", "--accept-data-loss"] - ) # this looks like a weird edge case when prisma just wont start on render. we need to have the --accept-data-loss - except Exception as e: - raise Exception( - f"Unable to run prisma commands. Run `pip install prisma` Got Exception: {(str(e))}" - ) - finally: - os.chdir(original_dir) + # try: + # subprocess.run(["prisma", "generate"]) + # subprocess.run( + # ["prisma", "db", "push", "--accept-data-loss"] + # ) # this looks like a weird edge case when prisma just wont start on render. we need to have the --accept-data-loss + # except Exception as e: + # raise Exception( + # f"Unable to run prisma commands. Run `pip install prisma` Got Exception: {(str(e))}" + # ) + # finally: + # os.chdir(original_dir) # Now you can import the Prisma Client from prisma import Prisma # type: ignore verbose_proxy_logger.debug("Connecting Prisma Client to DB..")