Navigation Menu

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixops
base: c9a174efe7a6
Choose a base ref
...
head repository: NixOS/nixops
compare: f5489422abad
Choose a head ref
  • 4 commits
  • 2 files changed
  • 2 contributors

Commits on Mar 9, 2020

  1. parallel.py

    doshitan authored and grahamc committed Mar 9, 2020
    Copy the full SHA
    e1cc7ab View commit details
    Browse the repository at this point in the history
  2. parallel: run_tasks -> List[Result], not List[Optional[Result]]

    If any of the tasks raised an exception, we don't return any results.
    In the first typing of this function, I saw we were adding None to
    the results even if there was an exception. This was just to see
    if we were done collecting or not. Changing this to a counter fixes it
    and removes the Optional in the return.
    grahamc committed Mar 9, 2020
    Copy the full SHA
    fe1a3b0 View commit details
    Browse the repository at this point in the history
  3. Copy the full SHA
    928e50f View commit details
    Browse the repository at this point in the history
  4. Copy the full SHA
    f548942 View commit details
    Browse the repository at this point in the history