Skip to content

Commit

Permalink
Change default connection time bound calculation from 5s to 5min.
Browse files Browse the repository at this point in the history
  • Loading branch information
creichert committed Jun 29, 2015
1 parent 46f5eaa commit 4bea654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Keter/Types/V04.hs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ instance Default KeterConfig where
}

fiveMinutes :: Int
fiveMinutes = 5 * 60 * 1000
fiveMinutes = 5 * 60 * 1000 * 1000

instance ParseYamlFile KeterConfig where
parseYamlFile basedir = withObject "KeterConfig" $ \o -> KeterConfig
Expand Down

0 comments on commit 4bea654

Please sign in to comment.