Skip to content

Conversation

@moda20
Copy link
Contributor

@moda20 moda20 commented Apr 27, 2022

this will fix the thousand request for resolve/result that freezes webpages

new Date(new Date().getTime() + 1000);
response = request('GET', `${this.nodeBaseUrl}/resolve/result/${handler}`);
body = JSON.parse(response.getBody());
if((new Date().getTime()) > milestonesDate + 1000){
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we use a sleep (setTimeout) here ? Otherwise the while loop will keep running and it might be cpu intensive

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think, there is an issue with this Proxy class not having any async or await or promises in it. introducing the sleep using setTimeout will need the use of promises and will affect the usage of the sdk. I think this is the reason why we are using the sync-request library to make requests in the first place.

So my solution here seemed the best solution to delay requests, but i agree there is an infinite loop there.
we need to ask @kotlarmilos form more info about the proxy and whether we rewrite it to use promises instead.

aleksaelezovic pushed a commit to aleksaelezovic/dkg.js that referenced this pull request Dec 16, 2024
…owngrade

downgrade multiformats dependency to ^9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants