-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2018.12.6 #8
2018.12.6 #8
Commits on Oct 15, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 8cafcab - Browse repository at this point
Copy the full SHA 8cafcabView commit details -
Optimize ut for serialization model. (#2632)
* 1. Integrate the unit test of the serialization module, code reuse. 2. Remove redundant unit tests and pojo classes. 3. Remove the useless pojo class in the common module. * fix ci fail * fix ci fail * fix ci fail * fix ci fail * remove author info
Configuration menu - View commit details
-
Copy full SHA for 1ef1220 - Browse repository at this point
Copy the full SHA 1ef1220View commit details
Commits on Oct 16, 2018
-
prototype for issue2570 (#2640)
* #2570: dubbo all in one fail to start from a tomcat server when spring framework is absent * add comments and fix unit test * add license header * update comments in unit tests
Configuration menu - View commit details
-
Copy full SHA for 393ffce - Browse repository at this point
Copy the full SHA 393ffceView commit details
Commits on Oct 17, 2018
-
[Dubbo -fix annotation bug] Fix @reference bug (#2649)
It's fine.
Configuration menu - View commit details
-
Copy full SHA for d8282fe - Browse repository at this point
Copy the full SHA d8282feView commit details
Commits on Oct 19, 2018
-
Merge pull request #2656, make sure serialization exception sends bac…
…k to consumer to preventing endless waiting. Fixes #1903: Our customized serialization id exceeds the maximum limit, now it cannot work on 2.6.2 anymore.
Configuration menu - View commit details
-
Copy full SHA for b723837 - Browse repository at this point
Copy the full SHA b723837View commit details
Commits on Oct 21, 2018
-
Configuration menu - View commit details
-
Copy full SHA for c805c1d - Browse repository at this point
Copy the full SHA c805c1dView commit details -
Optimize the doSelect method of RandomLoadBalance to reduce the times…
… of invoke of the getWeight method of the AbstractLoadBalance (#2597)
Configuration menu - View commit details
-
Copy full SHA for 5e60bef - Browse repository at this point
Copy the full SHA 5e60befView commit details
Commits on Oct 23, 2018
-
quartz初始化的Bean没有beanName,beanName=null,走这段代码的时候报空指针了。 org.springframework.boot.autoconfigure.quartz.AutowireCapableBeanJobFactory类的createJobInstance方法中使用this.beanFactory.initializeBean(jobInstance, null);初始化的Bean,其beanName=null。
Configuration menu - View commit details
-
Copy full SHA for dd950ac - Browse repository at this point
Copy the full SHA dd950acView commit details -
* NullPointerException * code rule
Configuration menu - View commit details
-
Copy full SHA for 6938d48 - Browse repository at this point
Copy the full SHA 6938d48View commit details
Commits on Oct 24, 2018
-
Merge pull request#2679, consumer throws RpcException when RegistryDi…
…rectory notify in high QPS. Fixes #2016
Configuration menu - View commit details
-
Copy full SHA for f2b6f07 - Browse repository at this point
Copy the full SHA f2b6f07View commit details -
remove ServiceClassHolder and use the ApplicationModel replacedly (#2646
Configuration menu - View commit details
-
Copy full SHA for 7286e23 - Browse repository at this point
Copy the full SHA 7286e23View commit details
Commits on Oct 26, 2018
-
[Dubbo-1983] Support Protobuf Serialization (#2618)
* finish support protobuf * polish * fix code review * use the general test for serialization
Configuration menu - View commit details
-
Copy full SHA for ac013b1 - Browse repository at this point
Copy the full SHA ac013b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 910b261 - Browse repository at this point
Copy the full SHA 910b261View commit details -
enhance pull request 2618 (#2691)
* enhance pull request 2618 * move spi file into the right directory * ignore protostuff test case * make unit test pass, support Time type * fix useless imports issue * add license header
Configuration menu - View commit details
-
Copy full SHA for b8bc80b - Browse repository at this point
Copy the full SHA b8bc80bView commit details -
fix typo error in FAQ
Configuration menu - View commit details
-
Copy full SHA for 46f95bf - Browse repository at this point
Copy the full SHA 46f95bfView commit details
Commits on Oct 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for a777aec - Browse repository at this point
Copy the full SHA a777aecView commit details -
Configuration menu - View commit details
-
Copy full SHA for dba175a - Browse repository at this point
Copy the full SHA dba175aView commit details
Commits on Oct 30, 2018
-
Optimize REGISTRIES field in AbstractRegistryFactory. (#2703)
* modify ConcurrentHashMap to HashMap.这里REGISTRIES在使用的时候都会先加锁,不存在多线程安全的问题。所以这里建议使用hashmap * modify ConcurrentHashMap to HashMap.这里REGISTRIES在使用的时候都会先加锁,不存在多线程安全的问题。所以这里建议使用hashmap
Configuration menu - View commit details
-
Copy full SHA for 99a00ba - Browse repository at this point
Copy the full SHA 99a00baView commit details -
[version 2.7.0]remove the StaticContext class and refactor the code r…
…elated to Async (#2688) * [Dubbo] move the classes of model from config to rpc-api for reusing * remove ServiceClassHolder and use the ApplicationModel replacedly * [Dubbo] delete the unused imported of ApplicationModel * Update dubbo-demo-consumer.xml this commits is no need to commit to remote repo. * remove StaticContext * remove the unused imported classes of ReferenceConfig * fix NPE of ConsumerModel * fix the failed testcase of AbstractClusterInvokerTest * [Dubbo] #PR2688 to fix the review issues
Configuration menu - View commit details
-
Copy full SHA for 36a1155 - Browse repository at this point
Copy the full SHA 36a1155View commit details -
Optimize heartbeat and reconnect task. (#2658)
* Optimize heartbeat and reconnect task. 1.Use hashedWheelTimer. 2.Distinguish between reconnect and heartbeat. 3.Increase inspection cycle. * fix ci fail. * fix ci fail. * fix ci fail.
Configuration menu - View commit details
-
Copy full SHA for e94d74b - Browse repository at this point
Copy the full SHA e94d74bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 195c82d - Browse repository at this point
Copy the full SHA 195c82dView commit details -
重构 ServiceBean 的 isDelay 方法,使其更符合语义 (#2686)
* Refactor method isDelay of ServiceBean to fix the wrong meaning of the method * Remove unnecessary method isDelay of ServiceBean
Configuration menu - View commit details
-
Copy full SHA for 4d0a36c - Browse repository at this point
Copy the full SHA 4d0a36cView commit details -
【Unit Test】FailbackRegistry Test: recover method (#2591)
* FailbackRegistry Test: recover method * fix the type error, and use CountDownLatch await method to fix the unstable problom * trigger the travis ci test retry * trigger the code static check again
Configuration menu - View commit details
-
Copy full SHA for 0a116aa - Browse repository at this point
Copy the full SHA 0a116aaView commit details
Commits on Oct 31, 2018
-
replace ServiceAnnotationBeanPostProcessor log.isInfoEnabled->log.isW…
…arnEnabled (#2712) simplify ExtensionLoader code segment
Configuration menu - View commit details
-
Copy full SHA for c21cc05 - Browse repository at this point
Copy the full SHA c21cc05View commit details
Commits on Nov 1, 2018
-
[Dubbo-2678][For Master] Add ability to turn off SPI auto injection, …
…special support for Object type. (#2682) * Add ability to turn off SPI auto injection, special support for generic Object type injection. * Change Inject to AutoInject since it's main purpose is to turn off auto-injection. * disable is redundant in DisableInject annotation
Configuration menu - View commit details
-
Copy full SHA for 3cf801b - Browse repository at this point
Copy the full SHA 3cf801bView commit details
Commits on Nov 5, 2018
-
Merge pull request #2725, problems of graceful shutdown in 2.6.3 and …
…some recommendation.
Configuration menu - View commit details
-
Copy full SHA for 0d51bc4 - Browse repository at this point
Copy the full SHA 0d51bc4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 505d155 - Browse repository at this point
Copy the full SHA 505d155View commit details -
* NullPointerException * code rule * code rule
Configuration menu - View commit details
-
Copy full SHA for 2284ede - Browse repository at this point
Copy the full SHA 2284edeView commit details
Commits on Nov 6, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 16f7a1e - Browse repository at this point
Copy the full SHA 16f7a1eView commit details -
Simplify the code of StringUtils to make it more graceful. (#2740)
* Simplify the code of StringUtils to make it more graceful. * Add Apache license
Configuration menu - View commit details
-
Copy full SHA for aed0102 - Browse repository at this point
Copy the full SHA aed0102View commit details -
Add 'forks' config into xml config (#2568)
* Add forks into xml config. * Add forks into xml config. * Add forks into xml config.
Configuration menu - View commit details
-
Copy full SHA for 56b2193 - Browse repository at this point
Copy the full SHA 56b2193View commit details
Commits on Nov 7, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 1a88c22 - Browse repository at this point
Copy the full SHA 1a88c22View commit details -
[DUBBO-2489] MockClusterInvoker provides local forced mock,I tested i…
…t locally, but it doesn't work (#2742)
Configuration menu - View commit details
-
Copy full SHA for e3bd693 - Browse repository at this point
Copy the full SHA e3bd693View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0107e7 - Browse repository at this point
Copy the full SHA b0107e7View commit details
Commits on Nov 8, 2018
-
Fix the bug that ReferenceBean refers service more than once when deb…
…ugging. (#2754) note: please visit http://t.cn/EAhta27 for more detail.
Configuration menu - View commit details
-
Copy full SHA for aa9f16e - Browse repository at this point
Copy the full SHA aa9f16eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 20a5efb - Browse repository at this point
Copy the full SHA 20a5efbView commit details -
Configuration menu - View commit details
-
Copy full SHA for a7cf737 - Browse repository at this point
Copy the full SHA a7cf737View commit details -
Configuration menu - View commit details
-
Copy full SHA for dcbd326 - Browse repository at this point
Copy the full SHA dcbd326View commit details -
[Dubbo-2353]fix Invalid property 'interfaceName' of bean class [org.a…
…pache.dubbo.config.spring.ServiceBean]#2353 (#2418) * add getter and setter for ServiceConfig's interfaceName property#2353 * add interfaceName to ignoreAttributeNames and change the unit test * delete the demo source code and update the unit test * unchange ServiceConfig * update unit test * update unit test
Configuration menu - View commit details
-
Copy full SHA for 117d485 - Browse repository at this point
Copy the full SHA 117d485View commit details
Commits on Nov 9, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 7f5fd46 - Browse repository at this point
Copy the full SHA 7f5fd46View commit details
Commits on Nov 13, 2018
-
#2777: heartbeat threads blocks process shutdown (#2778)
Fix heartbeat threads blocks process shutdown because its hashed-wheel-timer is non-daemon thread.
Configuration menu - View commit details
-
Copy full SHA for bff16eb - Browse repository at this point
Copy the full SHA bff16ebView commit details
Commits on Nov 14, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 38a6511 - Browse repository at this point
Copy the full SHA 38a6511View commit details
Commits on Nov 16, 2018
-
Fix typo confilict -> conflict
Configuration menu - View commit details
-
Copy full SHA for b1a7622 - Browse repository at this point
Copy the full SHA b1a7622View commit details -
improvement on Parameters and CollectionUtils (#2790)
Use CollectionUtils.toStringMap to reduce duplicate code in Parameters, and use Java 8 type inference for collections.
Configuration menu - View commit details
-
Copy full SHA for 9466425 - Browse repository at this point
Copy the full SHA 9466425View commit details
Commits on Nov 19, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 026fa0b - Browse repository at this point
Copy the full SHA 026fa0bView commit details
Commits on Nov 20, 2018
-
[Dubbo-2798]fix apporiate NotWritablePropertyException (#2800)
fix #2798 . 'propertyname in java donot contain '-' but camel format'.
Configuration menu - View commit details
-
Copy full SHA for 5ea6b33 - Browse repository at this point
Copy the full SHA 5ea6b33View commit details
Commits on Nov 22, 2018
-
[Dubbo-2758] Adding dependency on dubbo-remoting-mina for tests in du…
…bbo-rpc-dubbo (#2797) * Adding dependency on dubbo-remoting-mina so DubboProtocolTest.testDubboProtocolWithMina is no longer flaky * Changing port number to ensure new server/client created for test
Configuration menu - View commit details
-
Copy full SHA for 28b3736 - Browse repository at this point
Copy the full SHA 28b3736View commit details
Commits on Nov 23, 2018
-
Configuration menu - View commit details
-
Copy full SHA for a24289f - Browse repository at this point
Copy the full SHA a24289fView commit details
Commits on Nov 24, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 46b3458 - Browse repository at this point
Copy the full SHA 46b3458View commit details
Commits on Nov 29, 2018
-
[Dubbo-2845] Fix OOM in UT testSelectByWeight (#2845) (#2846)
Fix OOM Exception generated during UT
Configuration menu - View commit details
-
Copy full SHA for 5aeb049 - Browse repository at this point
Copy the full SHA 5aeb049View commit details -
Fix UT failed on windows with FileNetworkerTest (#2848)
Fix FileNetworkerTest failure
Configuration menu - View commit details
-
Copy full SHA for bc6a06c - Browse repository at this point
Copy the full SHA bc6a06cView commit details
Commits on Dec 3, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 133d570 - Browse repository at this point
Copy the full SHA 133d570View commit details
Commits on Dec 4, 2018
-
fixed typo of variable (#2875)
fixed type of variable
Configuration menu - View commit details
-
Copy full SHA for 32140d4 - Browse repository at this point
Copy the full SHA 32140d4View commit details -
Remove unnessesary code in RegistryDirectory#doList (#2861)
* remove unnessesary code * remove unused import
Configuration menu - View commit details
-
Copy full SHA for d0f7c05 - Browse repository at this point
Copy the full SHA d0f7c05View commit details -
add some ScriptRoute test case (#2879)
* add router test case * correct an error word
Configuration menu - View commit details
-
Copy full SHA for 1f751a6 - Browse repository at this point
Copy the full SHA 1f751a6View commit details
Commits on Dec 5, 2018
-
remove the duplicate superclass of TagRouter and ConditionRouter (#2885)
Remove the class ConditionRouter and TagRouter implement duplicate superclass Comparable
Configuration menu - View commit details
-
Copy full SHA for e8af04d - Browse repository at this point
Copy the full SHA e8af04dView commit details