Skip to content

Commit

Permalink
another try for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
orm011 committed May 17, 2024
1 parent 4f2b5c6 commit 1ec9c5b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ jobs:
env:
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_SKIP: pp* cp38-* *-musllinux*
MACOSX_DEPLOYMENT_TARGET: 12.0
run: python -m cibuildwheel --output-dir wheelhouse
- name: Save postgres build
if: ${{ matrix.os == 'ubuntu-latest' && ! steps.restore-postgres.outputs.cache-hit }}
Expand Down
3 changes: 2 additions & 1 deletion src/pgserver/postgres_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ def ensure_postgres_running(self) -> None:
if self._postmaster_info.status != 'ready':
_logger.warning(f"the server is running but not ready (unexpected) {self._postmaster_info=}")
else:
_logger.info(f"no postgres server found running, assuming stale {self._postmaster_info=} {self._postmaster_info.process=}")
_logger.info(f"no postgres server found running, assuming stale {self._postmaster_info=} ")


if platform.system() != 'Windows':
# use sockets to avoid any future conflict with port numbers
Expand Down

0 comments on commit 1ec9c5b

Please sign in to comment.