Skip to content

Commit

Permalink
build(deps): bump pymongo from 4.7.3 to 4.8.0 in /server (#2161)
Browse files Browse the repository at this point in the history
* build(deps): bump pymongo from 4.7.3 to 4.8.0 in /server

Bumps [pymongo](https://github.com/mongodb/mongo-python-driver) from 4.7.3 to 4.8.0.
- [Release notes](https://github.com/mongodb/mongo-python-driver/releases)
- [Changelog](https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst)
- [Commits](mongodb/mongo-python-driver@4.7.3...4.8.0)

---
updated-dependencies:
- dependency-name: pymongo
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* i hate serverless redshift

Signed-off-by: Luka Peschke <[email protected]>

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Luka Peschke <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Luka Peschke <[email protected]>
  • Loading branch information
dependabot[bot] and lukapeschke authored Jul 1, 2024
1 parent 64f607a commit c8151b0
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 64 deletions.
117 changes: 54 additions & 63 deletions server/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

@retry(stop=stop_after_attempt(3), wait=wait_fixed(2))
def _create_engine() -> Engine:
return create_engine(
engine = create_engine(
url=URL.create(
drivername="redshift+redshift_connector",
host=_HOST,
Expand All @@ -34,6 +34,10 @@ def _create_engine() -> Engine:
password=_PASSWORD,
)
)
with engine.connect() as conn:
conn.execute("SELECT 1;").fetchall()

return engine


@pytest.fixture(scope="module")
Expand Down

0 comments on commit c8151b0

Please sign in to comment.