File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/core/src/amazonqFeatureDev/client Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { ServiceOptions } from '../../shared/awsClientBuilder'
1010import globals from '../../shared/extensionGlobals'
1111import { getLogger } from '../../shared/logger'
1212import * as FeatureDevProxyClient from './featuredevproxyclient'
13- import { featureName , startTaskAssisLimitReachedMessage } from '../constants'
13+ import { featureName , startTaskAssistLimitReachedMessage } from '../constants'
1414import { CodeReference } from '../../amazonq/webview/ui/connector'
1515import {
1616 ApiError ,
@@ -185,7 +185,7 @@ export class FeatureDevClient {
185185 )
186186 if ( isAwsError ( e ) ) {
187187 // API Front-end will throw Throttling if conversation limit is reached. API Front-end monitors StartCodeGeneration for throttling
188- if ( e . code === 'ThrottlingException' && e . message . includes ( startTaskAssisLimitReachedMessage ) ) {
188+ if ( e . code === 'ThrottlingException' && e . message . includes ( startTaskAssistLimitReachedMessage ) ) {
189189 throw new MonthlyConversationLimitError ( e . message )
190190 }
191191 // BE service will throw ServiceQuota if code generation iteration limit is reached
You can’t perform that action at this time.
0 commit comments