Skip to content

Commit 4fa8fb1

Browse files
committed
fix linting issues
1 parent fa30735 commit 4fa8fb1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

wrongsecrets-balancer/src/teams/teams.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,9 @@ async function createAWSTeam(req, res) {
499499
passcode,
500500
});
501501
} catch (error) {
502-
logger.error(`Error while creating deployment or service for team ${team} on AWS: ${error.message}`);
502+
logger.error(
503+
`Error while creating deployment or service for team ${team} on AWS: ${error.message}`
504+
);
503505
res.status(500).send({ message: 'Failed to Create Instance' });
504506
}
505507
}
@@ -619,7 +621,9 @@ async function createAzureTeam(req, res) {
619621
passcode,
620622
});
621623
} catch (error) {
622-
logger.error(`Error while creating deployment or service for team ${team} on Azure: ${error.message}`);
624+
logger.error(
625+
`Error while creating deployment or service for team ${team} on Azure: ${error.message}`
626+
);
623627
res.status(500).send({ message: 'Failed to Create Instance' });
624628
}
625629
}
@@ -765,7 +769,9 @@ async function createGCPTeam(req, res) {
765769
passcode,
766770
});
767771
} catch (error) {
768-
logger.error(`Error while creating deployment or service for team ${team} on GCP: ${error.message}`);
772+
logger.error(
773+
`Error while creating deployment or service for team ${team} on GCP: ${error.message}`
774+
);
769775
res.status(500).send({ message: 'Failed to Create Instance' });
770776
}
771777
}

0 commit comments

Comments
 (0)