We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f5652f commit 7a11d39Copy full SHA for 7a11d39
src/http-data-source.ts
@@ -127,7 +127,7 @@ export abstract class HTTPDataSource<TContext = any> extends DataSource {
127
}
128
129
protected isResponseOk(statusCode: number): boolean {
130
- return (statusCode >= 200 && statusCode <= 399) || statusCode === 304
+ return statusCode >= 200 && statusCode <= 399
131
132
133
protected isResponseCacheable<TResult = unknown>(
0 commit comments