Skip to content

Commit

Permalink
GH #755 - Resolve opaque attributes to include match_slash in a chann…
Browse files Browse the repository at this point in the history
…el's configuration.
  • Loading branch information
dsuch committed Dec 7, 2018
1 parent 1298b65 commit 346e923
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/zato-server/src/zato/server/base/parallel/config.py
Expand Up @@ -18,6 +18,7 @@
# Zato
from zato.bunch import Bunch
from zato.common import MISC, SECRETS
from zato.common.util.sql import elems_with_opaque
from zato.server.config import ConfigDict
from zato.server.message import JSONPointerStore, NamespaceStore, XPathStore
from zato.url_dispatcher import Matcher
Expand Down Expand Up @@ -315,7 +316,7 @@ def set_up_config(self, server):
# All the HTTP/SOAP channels.
http_soap = []

for item in self.odb.get_http_soap_list(server.cluster.id, 'channel'):
for item in elems_with_opaque(self.odb.get_http_soap_list(server.cluster.id, 'channel')):

hs_item = {}
for key in item.keys():
Expand Down

0 comments on commit 346e923

Please sign in to comment.