Skip to content

Commit

Permalink
Set Ice.CacheMessageBuffers=0 (Fix #7288)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshmoore committed Nov 30, 2011
1 parent eef15f1 commit fd4e575
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions components/blitz/src/omero/client.java
Expand Up @@ -274,6 +274,7 @@ private void init(Ice.InitializationData id) {
// Strictly necessary for this class to work
id.properties.setProperty("Ice.ImplicitContext", "Shared");
id.properties.setProperty("Ice.ACM.Client", "0");
id.properties.setProperty("Ice.CacheMessageBuffers", "0");
id.properties.setProperty("Ice.RetryIntervals", "-1");
id.properties.setProperty("Ice.Default.EndpointSelection", "Ordered");
id.properties.setProperty("Ice.Default.PreferSecure", "1");
Expand Down
1 change: 1 addition & 0 deletions components/tools/OmeroCpp/src/omero/client.cpp
Expand Up @@ -36,6 +36,7 @@ namespace omero {
// Strictly necessary for this class to work
id.properties->setProperty("Ice.ImplicitContext", "Shared");
id.properties->setProperty("Ice.ACM.Client", "0");
id.properties->setProperty("Ice.CacheMessageBuffers", "0");
id.properties->setProperty("Ice.RetryIntervals", "-1");
id.properties->setProperty("Ice.Default.EndpointSelection", "Ordered");
id.properties->setProperty("Ice.Default.PreferSecure", "1");
Expand Down
1 change: 1 addition & 0 deletions components/tools/OmeroPy/src/omero/clients.py
Expand Up @@ -174,6 +174,7 @@ def _initData(self, id):
# Strictly necessary for this class to work
id.properties.setProperty("Ice.ImplicitContext", "Shared")
id.properties.setProperty("Ice.ACM.Client", "0")
id.properties.setProperty("Ice.CacheMessageBuffers", "0")
id.properties.setProperty("Ice.RetryIntervals", "-1")
id.properties.setProperty("Ice.Default.EndpointSelection", "Ordered")
id.properties.setProperty("Ice.Default.PreferSecure", "1")
Expand Down
1 change: 1 addition & 0 deletions etc/grid/templates.xml
Expand Up @@ -26,6 +26,7 @@

<properties id="Basics">
<property name="Ice.MessageSizeMax" value="65536"/> <!-- 64 MB -->
<property name="Ice.CacheMessageBuffers" value="0"/>
<property name="Ice.Override.ConnectTimeout" value="5000"/>
</properties>

Expand Down

0 comments on commit fd4e575

Please sign in to comment.