Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2023cd4

Browse files
committed
Doc fix according to PGPRO-990.
1 parent 037e8f0 commit 2023cd4

File tree

2 files changed

+2
-12
lines changed

2 files changed

+2
-12
lines changed

readme.txt

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,17 +41,7 @@ PostgreSQL GUCs for either shardlord and workers, the latter for shardlord only
4141
-- in particular, shardman.shardlord defines whether the instance is shardlord or
4242
not.
4343

44-
Immediately after starting the server with shardman library preloaded, but
45-
before creating extension you will receive on shardlord warning like
46-
47-
WARNING: pg_shardman library is preloaded on shardlord, but extenstion is not
48-
created
49-
50-
This is normal as we have here kind of circular dependency: it is pointless to
51-
create extension without the library, and library also uses SQL objects, so
52-
shardlord won't start without installed extension.
53-
54-
Currently extension scheme is fixed, it is, who would have though, 'shardman'.
44+
Currently extension scheme is fixed, it is, who would have thought, 'shardman'.
5545

5646
Now you can issue commands to the shardlord. All shardman commands (cmds) you
5747
issue return immediately because they technically just submit the cmd to the

src/pg_shardman.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ pg_shardman_installed_local(void)
461461
if (get_extension_oid("pg_shardman", true) == InvalidOid)
462462
{
463463
installed = false;
464-
shmn_elog(WARNING,
464+
shmn_elog(INFO,
465465
"Terminating shardlord: pg_shardman lib is preloaded, but ext is not created");
466466
}
467467
PopActiveSnapshot();

0 commit comments

Comments
 (0)