1.9.4 vs 2.1 get_url regression

I have an action

- name: download flyaway
  get_url: url=https://bintray.com/artifact/download/business/maven/flyway-commandline-3.2.1-linux-x64.tar.gz dest=/opt/ mode=0660
  register: flyway_status
  tags: [ db ]

When running via 1.9.4 the action executes with no issues.

One 2.1 it raises the following error

TASK [api : download flyaway] **************************************************
fatal: [bnr-target-api-0.eastus.cloudapp.azure.com]: FAILED! => {“changed”: false, “failed”: true, “msg”: “failed to create temporary content file: (104, ‘ECONNRESET’)”}

I have seen the same issue on two different Ubuntu 14.04.04 LTS hosts for two distinct get_url invocations

The host is running 2.1.0.0 inside a virtualenv.

Any ideas on what changed in 2.1?

Thanks!

-barrett