Merge pull request #3863 from mkllnk/quiet-cron

Make inserting delayed jobs from cron quiet
This commit is contained in:
Luis Ramos
2019-05-24 14:50:19 +01:00
committed by GitHub

View File

@@ -26,6 +26,7 @@ def psql
raise "Missing config for #{env} environment" unless config
"psql".tap do |s|
s << " --quiet"
s << " --host #{config['host']}" if config['host']
s << " --user #{config['username']}" if config['username']
s << " --port #{config['port']}" if config['port']