You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't been able to pin it down specifically yet, but I think there is a logic error somewhere in the caching logic with the new compiler. I seem to be getting into an infinite loop when trying deno run --reload.
Everything should work fine and the tests pass. Then if you run:
$ deno run --reload --allow-read test.ts
I have noticed that it seems to be an ever increasing amount of files being downloaded, and you will start to see several of the modules repeating themselves.
The text was updated successfully, but these errors were encountered:
As for duplicated downloads I believe this is the same issue as described in #2356. It was partially solved with State.compiled map but I believe the same hack has to be done for file downloads in "current run" because get_source_code_async will issue another download if file requesting downloading doesn't go through TS compiler.
Ok that isn't infinite, but it is 27 remote modules in actual fact, but 192 get downloaded. So that isn't very good. I assumed it was infinite and killed it before waiting for the 192.
I haven't been able to pin it down specifically yet, but I think there is a logic error somewhere in the caching logic with the new compiler. I seem to be getting into an infinite loop when trying
deno run --reload
.For example with oak, if you clone https://github.com/oakserver/oak/ and run:
Everything should work fine and the tests pass. Then if you run:
I have noticed that it seems to be an ever increasing amount of files being downloaded, and you will start to see several of the modules repeating themselves.
The text was updated successfully, but these errors were encountered: