Skip to content

Commit

Permalink
Added PG connection and scaling parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
flavienbwk committed Sep 12, 2024
1 parent e5cab19 commit db9bd06
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion action/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ try {
throw new Error('provider_default_zone is required');
}

console.log(`Directories to scan: ${dirsToScan}`);
console.log(`Directories or files to scan: ${dirsToScan}`);
console.log(`OpenAI API Key: ${openaiApiKey.substring(0, 5)}...`);
console.log(`OpenAI Model Type Inference: ${openaiModelTypeInference}`);
console.log(`OpenAI Model Type Embedding: ${openaiModelTypeEmbedding}`);
Expand Down
2 changes: 0 additions & 2 deletions action/providers/scaleway.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,8 @@ module.exports.handleScalewayProvider = async function(inputs) {
];
if (interfacePassword)
listOfSecrets.push({ key: 'INTERFACE_PASSWORD', value: interfacePassword });
console.log('pgConnectionString (nb chars):', pgConnectionString.length);
if (pgConnectionString)
listOfSecrets.push({ key: 'PG_CONNECTION_STRING', value: pgConnectionString });
console.log('CPU and Memory limits:', cpuLimit, memoryLimit);

const containerConfig = {
name: containerName,
Expand Down

0 comments on commit db9bd06

Please sign in to comment.