DUBBO-20 解决设置delay属性导致服务一直处理禁用状态问题

git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@150 1a56cb94-b969-4eaa-88fa-be21384802f2
This commit is contained in:
william.liangf 2011-10-31 11:44:03 +00:00
parent c78841b16a
commit 2e93a8bb9b
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ public class ServiceBean<T> extends ServiceConfig<T> implements InitializingBean
if (logger.isInfoEnabled()) {
logger.info("The service ready on spring started. service: " + getInterface());
}
doExport();
export();
}
}
}
@ -165,7 +165,7 @@ public class ServiceBean<T> extends ServiceConfig<T> implements InitializingBean
}
}
if (! isDelay()) {
doExport();
export();
}
}