Merge pull request #436 from citusdata/clarify_shared_preload_libraries_message

Clarify Error Message Related to shared_preload_libraries
pull/411/merge
Ahmet Eren Basak 2016-04-13 14:14:53 +03:00
commit 1f445e1e0b
1 changed files with 4 additions and 1 deletions

View File

@ -83,7 +83,10 @@ _PG_init(void)
if (!process_shared_preload_libraries_in_progress)
{
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.")));
}
/*