Skip to content

Commit

Permalink
Merge pull request openwebwork#2423 from dlglin/FixQuotesInSiteConf
Browse files Browse the repository at this point in the history
Change double quotes to single quotes in minion db connect strings
  • Loading branch information
drgrice1 authored Jun 11, 2024
2 parents 907392b + ec8ce25 commit 948ee7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conf/site.conf.dist
Original file line number Diff line number Diff line change
Expand Up @@ -320,8 +320,8 @@ $job_queue{backend} = 'SQLite';
# Database dsn for the Minion job queue. Some examples of settings for the
# respective backends follow. The postgres and mysql examples will need to be
# modified to work. The default sqlite setting will work as is.
#$job_queue{database_dsn} = "postgresql://dbuser@/webwork2_job_queue";
#$job_queue{database_dsn} = "mysql://dbuser:dbpasswd@localhost/webwork2_job_queue";
#$job_queue{database_dsn} = 'postgresql://dbuser@/webwork2_job_queue';
#$job_queue{database_dsn} = 'mysql://dbuser:dbpasswd@localhost/webwork2_job_queue';
$job_queue{database_dsn} = "sqlite:$webwork_dir/DATA/webwork2_job_queue.db";

################################################################################
Expand Down

0 comments on commit 948ee7e

Please sign in to comment.