NIFI-1327 NIFI-1353 Updating version of OkHttp and OkHttp-Digest

This commit is contained in:
jpercivall 2016-01-07 12:23:52 -05:00
parent 5273109ab1
commit 6c46f22b62
2 changed files with 2 additions and 3 deletions

View File

@ -172,12 +172,12 @@ language governing permissions and limitations under the License. -->
<dependency> <dependency>
<groupId>com.squareup.okhttp</groupId> <groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId> <artifactId>okhttp</artifactId>
<version>2.5.0</version> <version>2.7.1</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.burgstaller</groupId> <groupId>com.burgstaller</groupId>
<artifactId>okhttp-digest</artifactId> <artifactId>okhttp-digest</artifactId>
<version>0.4</version> <version>0.6</version>
<type>jar</type> <type>jar</type>
</dependency> </dependency>
<dependency> <dependency>

View File

@ -125,7 +125,6 @@ public class TestInvokeHTTP extends TestInvokeHttpCommon {
bundle1.assertAttributeEquals(InvokeHTTP.STATUS_MESSAGE, "OK"); bundle1.assertAttributeEquals(InvokeHTTP.STATUS_MESSAGE, "OK");
bundle1.assertAttributeEquals("Foo", "Bar"); bundle1.assertAttributeEquals("Foo", "Bar");
bundle1.assertAttributeEquals("Content-Type", "text/plain; charset=ISO-8859-1"); bundle1.assertAttributeEquals("Content-Type", "text/plain; charset=ISO-8859-1");
bundle1.assertAttributeEquals("OkHttp-Selected-Protocol", "http/1.1");
} }
// Currently InvokeHttp does not support Proxy via Https // Currently InvokeHttp does not support Proxy via Https