Skip to content

Commit

Permalink
chore: chord -> bento
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Feb 8, 2023
1 parent 66b0949 commit cd620cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bento_service_registry/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def create_app():
app.config.from_mapping(
BENTO_DEBUG=bento_debug,
BENTO_VALIDATE_SSL=validate_ssl,
BENTO_SERVICES=os.environ.get("CHORD_SERVICES", os.environ.get("BENTO_SERVICES", "chord_services.json")),
BENTO_SERVICES=os.environ.get("CHORD_SERVICES", os.environ.get("BENTO_SERVICES", "bento_services.json")),
BENTO_URL=bento_url,
BENTO_PUBLIC_URL=os.environ.get("BENTO_PUBLIC_URL", bento_url),
BENTO_PORTAL_PUBLIC_URL=os.environ.get("BENTO_PORTAL_PUBLIC_URL", bento_url),
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@


def _setup_env(debug_mode: bool = False):
os.environ["CHORD_SERVICES"] = os.path.join(os.path.dirname(__file__), "chord_services.json")
os.environ["BENTO_SERVICES"] = os.path.join(os.path.dirname(__file__), "bento_services.json")
os.environ["URL_PATH_FORMAT"] = "" # Mount off of root URL for testing
os.environ["CHORD_DEBUG"] = "true" if debug_mode else ""
os.environ["BENTO_DEBUG"] = "true" if debug_mode else ""


@pytest.fixture()
Expand Down

0 comments on commit cd620cd

Please sign in to comment.