mirror of
https://github.com/dadosfera/maestro.git
synced 2026-09-27 18:54:48 +00:00
UPDATE: more logs
This commit is contained in:
@@ -30,10 +30,15 @@ export async function getOauthSecrets() {
|
||||
});
|
||||
const res = await secretsManagerClient
|
||||
.send(getSecretComand)
|
||||
.catch(() => null);
|
||||
.catch((err) => {
|
||||
console.error(`Error fetching secret for ${key}:`, err);
|
||||
return null;
|
||||
});
|
||||
if (res) {
|
||||
secrets[key] = JSON.parse(res.SecretString);
|
||||
console.log(JSON.parse(res.SecretString).client_id)
|
||||
} else {
|
||||
console.log("No secret found for", key);
|
||||
secrets[key] = {
|
||||
client_id: 'id',
|
||||
client_secret: 'id',
|
||||
|
||||
Reference in New Issue
Block a user