[
https://issues.apache.org/jira/browse/CAMEL-11419?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16059627#comment-16059627
]
Dmitry Volodin commented on CAMEL-11419:
----------------------------------------
Please provide more info about Camel version you are using and detail test case.
With the latest Camel snapshot, I tried to add following test to the JUnit
IgniteCacheTest and it has passed successfully
{code:java}
@Test
public void testAddEntryUnderscoreCacheName) {
template.requestBodyAndHeader("ignite-cache:test_cache?operation=PUT",
"1234",
IgniteConstants.IGNITE_CACHE_KEY, "abcd");
assert_().that(ignite().cache("test_cache").size(CachePeekMode.ALL)).isEqualTo(1);
assert_().that(ignite().cache("test_cache").get("abcd")).isEqualTo("1234");
}
{code}
> Camel IgniteComponent fails to create cache with underscore e.g cache_name
> ---------------------------------------------------------------------------
>
> Key: CAMEL-11419
> URL: https://issues.apache.org/jira/browse/CAMEL-11419
> Project: Camel
> Issue Type: Bug
> Components: camel-ignite
> Reporter: LAXMIKANT KAMATH
>
> Camel IgniteComponent fails to create cache with underscore e.g cache_name
> IgniteComponent igniteComponent =
> IgniteComponent.fromLocation(igniteClientConfig);
> main.bind("ignite", igniteComponent);
> main.run();
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)