1. 16 Feb, 2017 9 commits
  2. 15 Feb, 2017 1 commit
    • Augusto Roman's avatar
      Fix data race for max connection limiting in proxy directive. (#1438) · 463c9d9d
      Augusto Roman authored
      * Fix data race for max connection limiting in proxy directive.
      
      The Conns and Unhealthy fields are updated concurrently across all active
      requests.  Because of this, they must use atomic operations for reads and
      writes.
      
      Prior to this change, Conns was incremented atomically, but read unsafely.
      Unhealthly was updated & read unsafely.  The new test
      TestReverseProxyMaxConnLimit exposes this race when run with -race.
      
      Switching to atomic operations makes the race detector happy.
      
      * oops, remove leftover dead code.
      463c9d9d
  3. 14 Feb, 2017 4 commits
  4. 13 Feb, 2017 2 commits
  5. 11 Feb, 2017 2 commits
  6. 08 Feb, 2017 3 commits
  7. 07 Feb, 2017 2 commits
  8. 04 Feb, 2017 1 commit
  9. 28 Jan, 2017 2 commits
  10. 25 Jan, 2017 5 commits
  11. 24 Jan, 2017 9 commits