Skip to content

Commit

Permalink
[git actions] Workflows new trigger test pt.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DrToldme committed Nov 14, 2023
1 parent 09553d9 commit fab4d40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DocService/sources/databaseConnectors/damengConnector.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ function closePool() {

function addSqlParameter(val, values) {
values.push({ val: val });
return ':' + values.length;
return `:${values.length}`;
}

function concatParams(val1, val2) {
Expand Down
2 changes: 1 addition & 1 deletion DocService/sources/databaseConnectors/oracleConnector.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const configSql = config.get('services.CoAuthoring.sql');
const cfgTableResult = configSql.get('tableResult');
const cfgTableChanges = configSql.get('tableChanges');
const cfgMaxPacketSize = configSql.get('max_allowed_packet');

// some commentary.
const connectionConfiguration = {
user: configSql.get('dbUser'),
password: configSql.get('dbPass'),
Expand Down

0 comments on commit fab4d40

Please sign in to comment.