diff options
author | Benoit Foucher <benoit@zeroc.com> | 2007-12-04 14:45:17 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2007-12-04 14:45:17 +0100 |
commit | 39623890a7fec210910e191e00d9f8252dfdd9ba (patch) | |
tree | eea40763f54d39172938f91956a56d08115c2f81 /java/src/IceInternal/Outgoing.java | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-39623890a7fec210910e191e00d9f8252dfdd9ba.tar.bz2 ice-39623890a7fec210910e191e00d9f8252dfdd9ba.tar.xz ice-39623890a7fec210910e191e00d9f8252dfdd9ba.zip |
Fix to not retry batch requests (even idempotent ones)
Diffstat (limited to 'java/src/IceInternal/Outgoing.java')
-rw-r--r-- | java/src/IceInternal/Outgoing.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/java/src/IceInternal/Outgoing.java b/java/src/IceInternal/Outgoing.java index fd22795c6cf..2830f59e4b5 100644 --- a/java/src/IceInternal/Outgoing.java +++ b/java/src/IceInternal/Outgoing.java @@ -267,14 +267,6 @@ public final class Outgoing implements OutgoingMessageCallback if(mode == Reference.ModeBatchOneway || mode == Reference.ModeBatchDatagram) { _handler.abortBatchRequest(); - - // - // If we abort a batch requests, we cannot retry, because - // not only the batch request that caused the problem will - // be aborted, but all other requests in the batch as - // well. - // - throw new LocalExceptionWrapper(ex, false); } throw ex; |