Skip to content

Commit 9025951

Browse files
committed
lint fix
1 parent ad3e971 commit 9025951

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

examples/e2e/app-router/open-next.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default defineCloudflareConfig({
1313
numberOfHardReplicas: 2,
1414
regionalReplicationOptions: {
1515
defaultRegion: "enam",
16-
}
16+
},
1717
},
1818
}),
1919
queue: doQueue,

packages/cloudflare/src/api/overrides/tag-cache/do-sharded-tag-cache.spec.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
22

33
import shardedDOTagCache, { AVAILABLE_REGIONS, DOId } from "./do-sharded-tag-cache";
44

5-
65
const hasBeenRevalidatedMock = vi.fn();
76
const writeTagsMock = vi.fn();
87
const idFromNameMock = vi.fn();
@@ -124,7 +123,7 @@ describe("DOShardedTagCache", () => {
124123
numberOfHardReplicas: 2,
125124
regionalReplicationOptions: {
126125
defaultRegion: "enam",
127-
}
126+
},
128127
},
129128
});
130129
const shardedTagCollection = cache.groupTagsByDO({
@@ -158,7 +157,7 @@ describe("DOShardedTagCache", () => {
158157
numberOfHardReplicas: 2,
159158
regionalReplicationOptions: {
160159
defaultRegion: "enam",
161-
}
160+
},
162161
},
163162
});
164163
const shardedTagCollection = cache.groupTagsByDO({
@@ -181,7 +180,7 @@ describe("DOShardedTagCache", () => {
181180
numberOfHardReplicas: 2,
182181
regionalReplicationOptions: {
183182
defaultRegion: "enam",
184-
}
183+
},
185184
},
186185
});
187186
const shardedTagCollection = cache.groupTagsByDO({

packages/cloudflare/src/api/overrides/tag-cache/do-sharded-tag-cache.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,16 @@ interface ShardedDOTagCacheOptions {
6969

7070
/**
7171
* Enable regional replication for the shards.
72-
*
72+
*
7373
* If not set, no regional replication will be performed and durable objects will be created without a location hint
74-
*
74+
*
7575
* Can be used to reduce latency for users in different regions and to spread the load across multiple regions.
76-
*
76+
*
7777
* This will increase the number of durable objects created, as each shard will be replicated in all regions.
7878
*/
7979
regionalReplicationOptions?: {
8080
defaultRegion: AllowedDurableObjectRegion;
81-
}
81+
};
8282
};
8383

8484
/**

0 commit comments

Comments
 (0)