DUBBO-20 解决设置delay属性导致服务一直处理禁用状态问题
git-svn-id: http://code.alibabatech.com/svn/dubbo/trunk@150 1a56cb94-b969-4eaa-88fa-be21384802f2
This commit is contained in:
parent
c78841b16a
commit
2e93a8bb9b
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue