diff --git a/client/src/com/aerospike/client/configuration/serializers/dynamicconfig/DynamicTxnVerifyConfig.java b/client/src/com/aerospike/client/configuration/serializers/dynamicconfig/DynamicTxnVerifyConfig.java index f73f1c568..5dc459ba2 100644 --- a/client/src/com/aerospike/client/configuration/serializers/dynamicconfig/DynamicTxnVerifyConfig.java +++ b/client/src/com/aerospike/client/configuration/serializers/dynamicconfig/DynamicTxnVerifyConfig.java @@ -82,7 +82,10 @@ public DynamicTxnVerifyConfig() {} public IntProperty getTimeoutDelay() { return timeoutDelay; } - public IntProperty getTotalTimeout() { return totalTimeout; } + public IntProperty getTotalTimeout() { + IntProperty t = totalTimeout; + return t; + } public IntProperty getMaxRetries() { return maxRetries; }