Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java
index e8adcfa4a1..249ca32c4c 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/CDOTransactionImpl.java
@@ -125,7 +125,8 @@ public class CDOTransactionImpl extends CDOViewImpl implements CDOTransaction
preCommit(dirtyObjects);
IChannel channel = session.getChannel();
- CommitTransactionResult result = new CommitTransactionRequest(channel, this).send();
+ CommitTransactionResult result = new CommitTransactionRequest(channel, this).send(100000L);
+ // TODO Change timeout semantics in Net4j
postCommit(newResources, result);
postCommit(newObjects, result);

Back to the top