From 7bccc4006ae99989ecc7f86c3d0d391a75e708a6 Mon Sep 17 00:00:00 2001 From: "Riddhi,Chabhadia" Date: Tue, 7 Nov 2017 09:15:38 -0500 Subject: [PATCH] changed timeout in multicurrency file --- samples/other/src/main/java/MultiCurrencyExample.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/other/src/main/java/MultiCurrencyExample.java b/samples/other/src/main/java/MultiCurrencyExample.java index fd7e51bb..80a703db 100755 --- a/samples/other/src/main/java/MultiCurrencyExample.java +++ b/samples/other/src/main/java/MultiCurrencyExample.java @@ -33,7 +33,7 @@ public static void main(String[] args) { cdnProps.setProperty("proxyHost","websenseproxy"); cdnProps.setProperty("proxyPort","8080"); cdnProps.setProperty("version","8.10"); - cdnProps.setProperty("timeout","65"); + cdnProps.setProperty("timeout","5000"); LitleOnline cdnCurrency = new LitleOnline(cdnProps); //Override the default merchant setup in .litle_SDK_config.properties to force purchase in CDN AuthorizationResponse response2 = cdnCurrency.authorize(authorization); //Perform the same authorization using CDN instead of USD @@ -50,7 +50,7 @@ public static void main(String[] args) { yenProps.setProperty("proxyHost","websenseproxy"); yenProps.setProperty("proxyPort","8080"); yenProps.setProperty("version","8.10"); - yenProps.setProperty("timeout","65"); + yenProps.setProperty("timeout","5000"); LitleOnline yenCurrency = new LitleOnline(yenProps); //Override the default merchant setup in .litle_SDK_config.properties to force purchase in YEN AuthorizationResponse response3 = yenCurrency.authorize(authorization); //Perform the same authorization using YEN instead of USD