mirror of https://github.com/citusdata/citus.git
Merge pull request #436 from citusdata/clarify_shared_preload_libraries_message
Clarify Error Message Related to shared_preload_librariespull/411/merge
commit
1f445e1e0b
|
@ -83,7 +83,10 @@ _PG_init(void)
|
||||||
if (!process_shared_preload_libraries_in_progress)
|
if (!process_shared_preload_libraries_in_progress)
|
||||||
{
|
{
|
||||||
ereport(ERROR, (errmsg("Citus can only be loaded via shared_preload_libraries"),
|
ereport(ERROR, (errmsg("Citus can only be loaded via shared_preload_libraries"),
|
||||||
errhint("Add citus to shared_preload_libraries.")));
|
errhint("Add citus to shared_preload_libraries configuration "
|
||||||
|
"variable in postgresql.conf in master and workers. Note "
|
||||||
|
"that citus should be at the beginning of "
|
||||||
|
"shared_preload_libraries.")));
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue