Skip to content

Commit

Permalink
🔬tweak taskId
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejpurves committed Sep 12, 2024
1 parent da3b548 commit 0958a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site/app/routes/_index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ async function actionCheckDoi(formData: FormData) {
async function actionCreateJobManifest(formData: FormData) {
const result = await createJobManifest({
...manifest,
taskId: Math.floor(Date.now() + Math.random() * 1e8).toString(16),
taskId: Math.floor(Date.now() + 1e12).toString(16),
} as AAMDepositManifest);
return result;
}
Expand Down

0 comments on commit 0958a58

Please sign in to comment.