diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-02-18 15:05:30 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-02-18 15:05:30 -0800 |
commit | 7cc4cdb949143e57524d41cfc6b91e896463ff18 (patch) | |
tree | 59e30cfe54a4eef5e677f8002f19d44d90ca41e0 /src | |
parent | f245030b7e001677659ead6d28401472e606337d (diff) | |
download | DotNetOpenAuth-7cc4cdb949143e57524d41cfc6b91e896463ff18.zip DotNetOpenAuth-7cc4cdb949143e57524d41cfc6b91e896463ff18.tar.gz DotNetOpenAuth-7cc4cdb949143e57524d41cfc6b91e896463ff18.tar.bz2 |
Fixed bug where max message lifetime was 13 seconds instead of 13 minutes.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/Configuration/MessagingElement.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/Configuration/MessagingElement.cs b/src/DotNetOpenAuth/Configuration/MessagingElement.cs index 15204a5..6c4fb24 100644 --- a/src/DotNetOpenAuth/Configuration/MessagingElement.cs +++ b/src/DotNetOpenAuth/Configuration/MessagingElement.cs @@ -45,7 +45,7 @@ namespace DotNetOpenAuth.Configuration { /// If a message should live for at least t = 3 minutes, /// this property should be set to (2*d + t) = 13 minutes.</para> /// </remarks> - [ConfigurationProperty(MaximumMessageLifetimeConfigName, DefaultValue = "00:00:13")] + [ConfigurationProperty(MaximumMessageLifetimeConfigName, DefaultValue = "00:13:00")] public TimeSpan MaximumMessageLifetime { get { return (TimeSpan)this[MaximumMessageLifetimeConfigName]; } set { this[MaximumMessageLifetimeConfigName] = value; } |