Skip to content

Commit

Permalink
0001204: Invalid target node on "lookup table data router", trouble c…
Browse files Browse the repository at this point in the history
…ache key resolution
  • Loading branch information
chenson42 committed May 8, 2013
1 parent 73856a9 commit 0dc3e6c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -153,7 +153,7 @@ public Map<String, String> parse(String routerExpression) throws SyntaxParsingEx
@SuppressWarnings("unchecked")
protected Map<String, Set<String>> getLookupTable(final Map<String, String> params, Router router,
SimpleRouterContext routingContext) {
final String CTX_CACHE_KEY = LOOKUP_TABLE_KEY + "." + params.get("TABLENAME");
final String CTX_CACHE_KEY = LOOKUP_TABLE_KEY + "." + params.get(PARAM_TABLE);
Map<String, Set<String>> lookupMap = (Map<String, Set<String>>) routingContext
.getContextCache().get(CTX_CACHE_KEY);
if (lookupMap == null) {
Expand Down

0 comments on commit 0dc3e6c

Please sign in to comment.