@@ -140,9 +140,9 @@ WorkshopConfigParser::Partition::ParseLine(FileLineParser &line)
140140 const char *word = line.ExpectWord ();
141141
142142 if (StringIsEqual (word, " database" )) {
143- config.database = line.ExpectValueAndEnd ();
143+ config.database . connect = line.ExpectValueAndEnd ();
144144 } else if (StringIsEqual (word, " database_schema" )) {
145- config.database_schema = line.ExpectValueAndEnd ();
145+ config.database . schema = line.ExpectValueAndEnd ();
146146 } else if (StringIsEqual (word, " translation_server" )) {
147147 config.translation_socket .SetLocal (line.ExpectValueAndEnd ());
148148 } else if (StringIsEqual (word, " tag" )) {
@@ -190,9 +190,9 @@ WorkshopConfigParser::CronPartition::ParseLine(FileLineParser &line)
190190 const char *word = line.ExpectWord ();
191191
192192 if (StringIsEqual (word, " database" )) {
193- config.database = line.ExpectValueAndEnd ();
193+ config.database . connect = line.ExpectValueAndEnd ();
194194 } else if (StringIsEqual (word, " database_schema" )) {
195- config.database_schema = line.ExpectValueAndEnd ();
195+ config.database . schema = line.ExpectValueAndEnd ();
196196 } else if (StringIsEqual (word, " translation_server" )) {
197197 config.translation_socket .SetLocal (line.ExpectValueAndEnd ());
198198 } else if (StringIsEqual (word, " qmqp_server" )) {
0 commit comments