From 39c49a39e6cf7c05b244bf96885420ac2731fd82 Mon Sep 17 00:00:00 2001 From: Steve Bohlen Date: Thu, 18 Aug 2011 15:13:42 -0400 Subject: [PATCH] SPRNET-1461 -applied timeout value from attribute properly --- .../Interceptor/AttributesTransactionAttributeSource.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Spring/Spring.Data/Transaction/Interceptor/AttributesTransactionAttributeSource.cs b/src/Spring/Spring.Data/Transaction/Interceptor/AttributesTransactionAttributeSource.cs index f2935c0b..749aa9d1 100644 --- a/src/Spring/Spring.Data/Transaction/Interceptor/AttributesTransactionAttributeSource.cs +++ b/src/Spring/Spring.Data/Transaction/Interceptor/AttributesTransactionAttributeSource.cs @@ -88,6 +88,7 @@ namespace Spring.Transaction.Interceptor rbta.PropagationBehavior = ta.TransactionPropagation; rbta.TransactionIsolationLevel = ta.IsolationLevel; rbta.ReadOnly = ta.ReadOnly; + rbta.TransactionTimeout = ta.Timeout; #if NET_2_0 rbta.EnterpriseServicesInteropOption = ta.EnterpriseServicesInteropOption;