Skip to content

Commit

Permalink
changed timeout in multicurrency file
Browse files Browse the repository at this point in the history
  • Loading branch information
RiddhiChabhadia committed Nov 7, 2017
1 parent 3126bbc commit 7bccc40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/other/src/main/java/MultiCurrencyExample.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 7bccc40

Please sign in to comment.