We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 013a1c4 commit 26fa50cCopy full SHA for 26fa50c
2 files changed
config.js.ci
@@ -7,7 +7,8 @@ module.exports = {
7
currentVersionURL: "http://localhost:4000/v1",
8
elasticsearch: {
9
host: "https://localhost:9200",
10
- apiKey: INAT_ES_API_KEY
+ apiKey: INAT_ES_API_KEY,
11
+ tlsAllowUnauthorized: true
12
},
13
database: {
14
user: "postgres",
lib/models/pg_connection.js
@@ -61,7 +61,7 @@ const PgConnection = class PgConnection {
61
numberOfAttempts -= 1;
62
if ( numberOfAttempts === 0 ) {
63
PgConnection.debug( new Error( "Couldn't connect to database" ) );
64
- process.exit( );
+ process.exit( 1 );
65
}
66
return this.awaitConnection( numberOfAttempts );
67
0 commit comments