Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README: add curl-without-ipv6 #110

Merged
merged 1 commit into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Formula/curl-without-ipv6.rb
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ def install
# FATAL: postmaster became multithreaded during startup
#
# Disabling IPv6 support in curl a possible workaround for the issue
#
# Ref https://www.postgresql.org/message-id/flat/CYMBV0OT7216.JNRUO6R6GH86%40neon.tech
args << "--disable-ipv6"

args << if OS.mac?
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ neon-local endpoint start test
```

```bash
psql -p55432 -h 127.0.0.1 -U cloud_admin postgres
psql -p 55432 -h 127.0.0.1 -U cloud_admin postgres
```

# Formulae in the tap
Expand All @@ -33,6 +33,7 @@ psql -p55432 -h 127.0.0.1 -U cloud_admin postgres
- [`neon-storage`](Formula/neon-storage.rb). Storage part of Neon. It contains Pageserver, Safekeeper, and other required binaries
- [`neon-postgres`](Formula/neon-postgres.rb). Compute part of Neon. The formula contains Postgres 14 and 15
- [`neon-extension`](Formula/neon-extension.rb). Postgres extensions that provide communication between Compute and Storage
- [`curl-without-ipv6`](Formula/curl-without-ipv6.rb). Curl formula without IPv6 support
- [`tpc-h`](Formula/tpc-h.rb). TPC-H benchmark with patches for MacOS and Postgres support

# Extensions:
Expand Down
Loading