Skip to content

Commit 19bc056

Browse files
authored
Fix broken and obsolete repository URLs (#1081)
1 parent 41bb373 commit 19bc056

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/citus-quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ or run the docker build command directly:
4141

4242
::
4343

44-
$ git clone https://github.com/citusdata/pg_auto_failover
44+
$ git clone https://github.com/hapostgres/pg_auto_failover
4545
$ cd pg_auto_failover/docs/cluster
4646

4747
$ docker build -t pg_auto_failover:citus -f Dockerfile ../..

docs/faq.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Those questions have been asked in `GitHub issues`__ for the project by
55
several people. If you have more questions, feel free to open a new issue,
66
and your question and its answer might make it to this FAQ.
77

8-
__ https://github.com/citusdata/pg_auto_failover/issues_
8+
__ https://github.com/hapostgres/pg_auto_failover/issues
99

1010
I stopped the primary and no failover is happening for 20s to 30s, why?
1111
-----------------------------------------------------------------------

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Welcome to pg_auto_failover's documentation!
77
============================================
88

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

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

19-
__ https://github.com/citusdata
19+
__ https://github.com/hapostgres/pg_auto_failover
2020

2121
.. note::
2222

docs/tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ or run the docker build command directly:
4141

4242
::
4343

44-
$ git clone https://github.com/citusdata/pg_auto_failover
44+
$ git clone https://github.com/hapostgres/pg_auto_failover
4545
$ cd pg_auto_failover/docs/tutorial
4646
$ docker compose build
4747

src/bin/pg_autoctl/keeper.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ keeper_update_state(Keeper *keeper, int64_t node_id, int group_id,
128128
log_fatal("Current node id does not fit in a 32 bits integer.");
129129
log_info("Please report a bug to pg_auto_failover by opening "
130130
"an issue on Github project at "
131-
"https://github.com/citusdata/pg_auto_failover.");
131+
"https://github.com/hapostgres/pg_auto_failover.");
132132
return false;
133133
}
134134

@@ -1071,7 +1071,7 @@ keeper_maintain_replication_slots(Keeper *keeper)
10711071
*
10721072
* In Postgres 11 and 12, the pg_replication_slot_advance() function has
10731073
* been buggy for quite some time and prevented WAL recycling on standby
1074-
* servers, see https://github.com/citusdata/pg_auto_failover/issues/283
1074+
* servers, see https://github.com/hapostgres/pg_auto_failover/issues/283
10751075
* for the problem and
10761076
* https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=b48df81
10771077
* for the solution.

src/bin/pg_autoctl/pgsetup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1859,7 +1859,7 @@ pgsetup_sslmode_to_string(SSLMode sslMode)
18591859
* In Postgres 11 and 12, the pg_replication_slot_advance() function has been
18601860
* buggy and prevented WAL recycling on standby nodes.
18611861
*
1862-
* See https://github.com/citusdata/pg_auto_failover/issues/283 for the problem
1862+
* See https://github.com/hapostgres/pg_auto_failover/issues/283 for the problem
18631863
* and https://git.postgresql.org/gitweb/?p=postgresql.git;a=commit;h=b48df81
18641864
* for the solution.
18651865
*

0 commit comments

Comments
 (0)