Added resource filter for AnnotationDrivenFunctionsTest

This commit is contained in:
David Turanski
2012-11-26 09:22:45 -05:00
parent efdc27666e
commit 2d30b81e8e
2 changed files with 2 additions and 5 deletions

View File

@@ -108,11 +108,8 @@ public class ClientCacheFactoryBean extends CacheFactoryBean {
if (StringUtils.hasText(poolName)) {
p = PoolManager.find(poolName);
}
// Bind this client cache to a pool that hasn't been created yet.
// initialize a client-like Distributed System before initializing
// the pool
// Bind this client cache to a pool that hasn't been created yet.
if (p == null) {
PoolFactoryBean.connectToTemporaryDs();
}

View File

@@ -7,7 +7,7 @@
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<context:component-scan base-package="org.springframework.data.gemfire.function.config"/>
<context:component-scan base-package="org.springframework.data.gemfire.function.config" resource-pattern="**/AnnotationDrivenFunctionsTest*.class"/>
<gfe:annotation-driven/>