Skip to content

Commit

Permalink
fix(lint): differentiate name
Browse files Browse the repository at this point in the history
  • Loading branch information
krokoko committed Dec 15, 2023
1 parent ef8de61 commit cba63cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ export class RagAppsyncStepfnOpensearch extends Construct {
const nameParts: string[] = [
Stack.of(scope).stackName, // Name of the stack
scope.node.id, // Construct ID
'StateMachineLog', // Literal string for log group name portion
'StateMachineLogRag', // Literal string for log group name portion
];
const logGroupName = generatePhysicalName(logGroupPrefix, nameParts, maxGeneratedNameLength);
const ragLogGroup = new logs.LogGroup(this, 'ingestionStepFunctionLogGroup', {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ export class SummarizationAppsyncStepfn extends Construct {
const nameParts: string[] = [
Stack.of(scope).stackName, // Name of the stack
scope.node.id, // Construct ID
'StateMachineLog', // Literal string for log group name portion
'StateMachineLogSummarization', // Literal string for log group name portion
];
const logGroupName = generatePhysicalName(logGroupPrefix, nameParts, maxGeneratedNameLength);
const summarizationLogGroup = new logs.LogGroup(this, 'summarizationLogGroup', {
Expand Down

0 comments on commit cba63cf

Please sign in to comment.