Skip to content

Commit

Permalink
Single quotes give an error (#88)
Browse files Browse the repository at this point in the history
of postgrest: ParseError "postgrest.config" "endOfInput"
  • Loading branch information
chrissound authored and begriffs committed Jul 8, 2017
1 parent aa6e3af commit 49a6277
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -239,19 +239,19 @@ Once you've verified that requests are as you expect, you can get more informati
.. code:: sql
# send logs where the collector can access them
log_destination = 'stderr'
log_destination = "stderr"
# collect stderr output to log files
logging_collector = on
# save logs in pg_log/ under the pg data directory
log_directory = 'pg_log'
log_directory = "pg_log"
# (optional) new log file per day
log_filename = 'postgresql-%Y-%m-%d.log'
log_filename = "postgresql-%Y-%m-%d.log"
# log every kind of SQL statement
log_statement = 'all'
log_statement = "all"
Restart the database and watch the log file in real-time to understand how HTTP requests are being translated into SQL commands.

Expand Down

0 comments on commit 49a6277

Please sign in to comment.