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 a4bd4ed commit 52dde04Copy full SHA for 52dde04
src/store.ts
@@ -76,7 +76,7 @@ export class Store {
76
async delete(key: string) {
77
const res = await this.client.makeRequest({ key, method: HTTPMethod.DELETE, storeName: this.name })
78
79
- if (![200, 202, 404].includes(res.status)) {
+ if (![200, 204, 404].includes(res.status)) {
80
throw new BlobsInternalError(res.status)
81
}
82
0 commit comments