Skip to content

Commit

Permalink
v0.3.7 (#757)
Browse files Browse the repository at this point in the history
  • Loading branch information
thehenrytsai authored Jun 12, 2024
1 parent 73daec0 commit 1894c1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tbd54566975/dwn-sdk-js",
"version": "0.3.6",
"version": "0.3.7",
"description": "A reference implementation of https://identity.foundation/decentralized-web-node/spec/",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/core/resumable-task-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export class ResumableTaskManager {
private async runWithAutomaticTimeoutExtension(managedTask: ManagedResumableTask): Promise<void> {
const timeoutInSeconds = ResumableTaskManager.timeoutExtensionFrequencyInSeconds * 2; // give ample time for extension to take place

let timer!: NodeJS.Timer;
let timer!: ReturnType<typeof setInterval>;
try {
// start a timer loop to keep extending the timeout of the task until it is completed
timer = setInterval(() => {
Expand Down

0 comments on commit 1894c1a

Please sign in to comment.