Skip to content
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: 1 addition & 1 deletion docs/citus-quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ or run the docker build command directly:

::

$ git clone https://github.com/citusdata/pg_auto_failover
$ git clone https://github.com/hapostgres/pg_auto_failover
$ cd pg_auto_failover/docs/cluster

$ docker build -t pg_auto_failover:citus -f Dockerfile ../..
Expand Down
2 changes: 1 addition & 1 deletion docs/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Those questions have been asked in `GitHub issues`__ for the project by
several people. If you have more questions, feel free to open a new issue,
and your question and its answer might make it to this FAQ.

__ https://github.com/citusdata/pg_auto_failover/issues_
__ https://github.com/hapostgres/pg_auto_failover/issues

I stopped the primary and no failover is happening for 20s to 30s, why?
-----------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Welcome to pg_auto_failover's documentation!
============================================

The pg_auto_failover project is an Open Source Software project. The
development happens at `https://github.com/citusdata/pg_auto_failover`__ and
development happens at `https://github.com/hapostgres/pg_auto_failover`__ and
is public: everyone is welcome to participate by opening issues or pull
requests, giving feedback, etc.

Expand All @@ -16,7 +16,7 @@ command, then read the entire available documentation (after all, I took the
time to write it), and then to address the community in a kind and polite
way — the same way you would expect people to use when addressing you.

__ https://github.com/citusdata
__ https://github.com/hapostgres/pg_auto_failover

.. note::

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ or run the docker build command directly:

::

$ git clone https://github.com/citusdata/pg_auto_failover
$ git clone https://github.com/hapostgres/pg_auto_failover
$ cd pg_auto_failover/docs/tutorial
$ docker compose build

Expand Down
4 changes: 2 additions & 2 deletions src/bin/pg_autoctl/keeper.c
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ keeper_update_state(Keeper *keeper, int64_t node_id, int group_id,
log_fatal("Current node id does not fit in a 32 bits integer.");
log_info("Please report a bug to pg_auto_failover by opening "
"an issue on Github project at "
"https://github.com/citusdata/pg_auto_failover.");
"https://github.com/hapostgres/pg_auto_failover.");
return false;
}

Expand Down Expand Up @@ -1071,7 +1071,7 @@ keeper_maintain_replication_slots(Keeper *keeper)
*
* In Postgres 11 and 12, the pg_replication_slot_advance() function has
* been buggy for quite some time and prevented WAL recycling on standby
* servers, see https://github.com/citusdata/pg_auto_failover/issues/283
* servers, see https://github.com/hapostgres/pg_auto_failover/issues/283
* for the problem and
* https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=b48df81
* for the solution.
Expand Down
2 changes: 1 addition & 1 deletion src/bin/pg_autoctl/pgsetup.c
Original file line number Diff line number Diff line change
Expand Up @@ -1859,7 +1859,7 @@ pgsetup_sslmode_to_string(SSLMode sslMode)
* In Postgres 11 and 12, the pg_replication_slot_advance() function has been
* buggy and prevented WAL recycling on standby nodes.
*
* See https://github.com/citusdata/pg_auto_failover/issues/283 for the problem
* See https://github.com/hapostgres/pg_auto_failover/issues/283 for the problem
* and https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=b48df81
* for the solution.
*
Expand Down