Skip to content

Commit 81303ba

Browse files
committed
more small fixes
1 parent 349193f commit 81303ba

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/wrangler/src/workflows/sync/repo-init/init.workflow.util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export async function initNextRepos(
2828
for (const repo of repos) {
2929
const { repoId, repoName, repoOwner } = repo;
3030
await Repo.markInitInProgress(tx, [repoId]);
31-
workflow.create({
31+
await workflow.create({
3232
id: generateSyncWorkflowId(`init-${repoOwner}-${repoName}`),
3333
params: { repoId },
3434
});

packages/wrangler/src/workflows/sync/sync.param.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ const SIZE_LIMITS_MAP: Record<string, number> = {
4747
// special handling for golang, source of many errors
4848
// will figure out how to properly size return value
4949
"golang/go": 500000,
50+
"flutter/flutter": 500000,
5051
};
5152
export const getSizeLimit = (repoName: string) => {
5253
return SIZE_LIMITS_MAP[repoName] ?? DEFAULT_RESPONSE_SIZE_LIMIT_IN_BYTES;

0 commit comments

Comments
 (0)