-
Notifications
You must be signed in to change notification settings - Fork 908
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
List/Search results blocking until completion instead of streaming output #143
Comments
ferventcoder
pushed a commit
that referenced
this issue
Jun 29, 2015
Remove ToList() in the calls to NuGetList.GetPackages() and return an IEnumerable to ensure that calls to List stream output instead of performing blocking operations to return results from searching package feeds.
ferventcoder
added a commit
that referenced
this issue
Jun 29, 2015
* Stream_Results: (GH-143) Ensure NuGetList streams output
ferventcoder
added a commit
that referenced
this issue
Jun 29, 2015
Update all of the ISourceRunners with changes to IEnumerable<PackageResult>. * stable: (GH-143) Ensure NuGetList streams output Conflicts: src/chocolatey/infrastructure.app/services/INugetService.cs src/chocolatey/infrastructure.app/services/NugetService.cs
ferventcoder
changed the title
ToList on Nuget list command is bad, mmkay?
Search results blocking until completion - NuGet using ToList too early
Jul 25, 2015
ferventcoder
changed the title
Search results blocking until completion - NuGet using ToList too early
Search results blocking until completion instead of streaming
Jul 25, 2015
ferventcoder
changed the title
Search results blocking until completion instead of streaming
Search results blocking until completion instead of streaming output
Jul 25, 2015
ferventcoder
changed the title
Search results blocking until completion instead of streaming output
List/Search results blocking until completion instead of streaming output
Jul 25, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
226e998 removed yield returns so one must wait for the entire list to return before seeing output.
The text was updated successfully, but these errors were encountered: