Skip to content

Commit

Permalink
Rename to postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
Sophie Glinton authored and Sophie Glinton committed Dec 2, 2024
1 parent 5e71c0e commit 490fb9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

env:
MB__BATCH_SIZE: 10_000
MB__BACKEND_TYPE: postgresql
MB__BACKEND_TYPE: postgres
MB__DATASETS_CONFIG: datasets.toml
# PostgreSQL backend settings
MB__POSTGRES__HOST: localhost
Expand Down
2 changes: 1 addition & 1 deletion sample.env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MB__BATCH_SIZE=250_000
MB__BACKEND_TYPE=postgresql
MB__BACKEND_TYPE=postgres
MB__DATASETS_CONFIG=datasets.toml

MB__POSTGRES__HOST=
Expand Down
2 changes: 1 addition & 1 deletion src/matchbox/server/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
class MatchboxBackends(StrEnum):
"""The available backends for Matchbox."""

POSTGRES = "postgresql"
POSTGRES = "postgres"


class MatchboxSettings(BaseSettings):
Expand Down

0 comments on commit 490fb9a

Please sign in to comment.