Skip to content

Commit

Permalink
Actually fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanmai committed Dec 16, 2023
1 parent b0c8151 commit 08ffd4c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/helm/proxy/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
import bottle

from helm.common.authentication import Authentication
from helm.common.general import ensure_directory_exists
from helm.common.hierarchical_logger import hlog
from helm.common.optional_dependencies import handle_module_not_found_error
from helm.common.request import Request
Expand Down Expand Up @@ -230,6 +231,7 @@ def main():
cache_path = args.mongo_uri
else:
cache_path = os.path.join(args.base_path, CACHE_DIR)
ensure_directory_exists(cache_path)
service = ServerService(base_path=args.base_path, cache_path=cache_path)

gunicorn_args = {
Expand Down

0 comments on commit 08ffd4c

Please sign in to comment.