Cleanup old commmented out code
parent
781ac591a8
commit
d608318778
|
|
@ -952,13 +952,6 @@ const core = __importStar(__webpack_require__(42186));
|
|||
class AWSError {
|
||||
static handleStackCreationFailure(error, CF, taskDefStackName) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
cloud_runner_logger_1.default.log(' \n ');
|
||||
//CloudRunnerLogger.log('aws stack parameters: ');
|
||||
//CloudRunnerLogger.log(JSON.stringify(parameters, undefined, 4));
|
||||
//CloudRunnerLogger.log('aws stack secrets: ');
|
||||
//CloudRunnerLogger.log(JSON.stringify(secrets, undefined, 4));
|
||||
//CloudRunnerLogger.log('aws stack: ');
|
||||
//CloudRunnerLogger.log(taskDefCloudFormation);
|
||||
cloud_runner_logger_1.default.log('aws error: ');
|
||||
core.error(JSON.stringify(error, undefined, 4));
|
||||
cloud_runner_logger_1.default.log('Getting events and resources for task stack');
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -3,24 +3,7 @@ import * as SDK from 'aws-sdk';
|
|||
import * as core from '@actions/core';
|
||||
|
||||
export class AWSError {
|
||||
static async handleStackCreationFailure(
|
||||
error: any,
|
||||
CF: SDK.CloudFormation,
|
||||
taskDefStackName: string,
|
||||
//taskDefCloudFormation: string,
|
||||
//parameters: any[],
|
||||
//secrets: CloudRunnerSecret[],
|
||||
) {
|
||||
CloudRunnerLogger.log(' \n ');
|
||||
//CloudRunnerLogger.log('aws stack parameters: ');
|
||||
//CloudRunnerLogger.log(JSON.stringify(parameters, undefined, 4));
|
||||
|
||||
//CloudRunnerLogger.log('aws stack secrets: ');
|
||||
//CloudRunnerLogger.log(JSON.stringify(secrets, undefined, 4));
|
||||
|
||||
//CloudRunnerLogger.log('aws stack: ');
|
||||
//CloudRunnerLogger.log(taskDefCloudFormation);
|
||||
|
||||
static async handleStackCreationFailure(error: any, CF: SDK.CloudFormation, taskDefStackName: string) {
|
||||
CloudRunnerLogger.log('aws error: ');
|
||||
core.error(JSON.stringify(error, undefined, 4));
|
||||
CloudRunnerLogger.log('Getting events and resources for task stack');
|
||||
|
|
|
|||
Loading…
Reference in New Issue