Skip to content
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

Merged
merged 56 commits into from
Dec 6, 2018
Merged

2018.12.6 #8

merged 56 commits into from
Dec 6, 2018

Commits on Oct 15, 2018

  1. combine test coverage report (#2643)

    htynkn authored and jerrick-zhu committed Oct 15, 2018
    Configuration menu
    Copy the full SHA
    8cafcab View commit details
    Browse the repository at this point in the history
  2. 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
    carryxyh authored and lovepoem committed Oct 15, 2018
    Configuration menu
    Copy the full SHA
    1ef1220 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2018

  1. 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
    beiwei30 authored and jerrick-zhu committed Oct 16, 2018
    Configuration menu
    Copy the full SHA
    393ffce View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2018

  1. [Dubbo -fix annotation bug] Fix @reference bug (#2649)

    It's fine.
    zonghaishang authored and mercyblitz committed Oct 17, 2018
    Configuration menu
    Copy the full SHA
    d8282fe View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2018

  1. 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.
    beiwei30 authored and chickenlj committed Oct 19, 2018
    Configuration menu
    Copy the full SHA
    b723837 View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2018

  1. Configuration menu
    Copy the full SHA
    c805c1d View commit details
    Browse the repository at this point in the history
  2. Optimize the doSelect method of RandomLoadBalance to reduce the times…

    … of invoke of the getWeight method of the AbstractLoadBalance (#2597)
    tswstarplanet authored and kimmking committed Oct 21, 2018
    Configuration menu
    Copy the full SHA
    5e60bef View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2018

  1. 解决与quartz集成报错问题 (#2677)

    quartz初始化的Bean没有beanName,beanName=null,走这段代码的时候报空指针了。
    org.springframework.boot.autoconfigure.quartz.AutowireCapableBeanJobFactory类的createJobInstance方法中使用this.beanFactory.initializeBean(jobInstance, null);初始化的Bean,其beanName=null。
    liunancun authored and beiwei30 committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    dd950ac View commit details
    Browse the repository at this point in the history
  2. Code format (#2662)

    * NullPointerException
    
    * code rule
    x-ultimate authored and beiwei30 committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    6938d48 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2018

  1. Merge pull request#2679, consumer throws RpcException when RegistryDi…

    …rectory notify in high QPS.
    
    Fixes #2016
    beiwei30 authored and chickenlj committed Oct 24, 2018
    Configuration menu
    Copy the full SHA
    f2b6f07 View commit details
    Browse the repository at this point in the history
  2. remove ServiceClassHolder and use the ApplicationModel replacedly (#2646

    )
    
    * [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.
    Jeff-Lv authored and beiwei30 committed Oct 24, 2018
    Configuration menu
    Copy the full SHA
    7286e23 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2018

  1. [Dubbo-1983] Support Protobuf Serialization (#2618)

    * finish support protobuf
    
    * polish
    
    * fix code review
    
    * use the general test for serialization
    kun-song authored and beiwei30 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    ac013b1 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    910b261 View commit details
    Browse the repository at this point in the history
  3. 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
    beiwei30 authored Oct 26, 2018
    Configuration menu
    Copy the full SHA
    b8bc80b View commit details
    Browse the repository at this point in the history
  4. fix typo error in FAQ (#2684)

    fix typo error in FAQ
    xuchuanyin authored and beiwei30 committed Oct 26, 2018
    Configuration menu
    Copy the full SHA
    46f95bf View commit details
    Browse the repository at this point in the history

Commits on Oct 29, 2018

  1. Configuration menu
    Copy the full SHA
    a777aec View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dba175a View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2018

  1. Optimize REGISTRIES field in AbstractRegistryFactory. (#2703)

    * modify ConcurrentHashMap to HashMap.这里REGISTRIES在使用的时候都会先加锁,不存在多线程安全的问题。所以这里建议使用hashmap
    
    * modify ConcurrentHashMap to HashMap.这里REGISTRIES在使用的时候都会先加锁,不存在多线程安全的问题。所以这里建议使用hashmap
    jingui123 authored and beiwei30 committed Oct 30, 2018
    Configuration menu
    Copy the full SHA
    99a00ba View commit details
    Browse the repository at this point in the history
  2. [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
    Jeff-Lv authored and beiwei30 committed Oct 30, 2018
    Configuration menu
    Copy the full SHA
    36a1155 View commit details
    Browse the repository at this point in the history
  3. 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.
    carryxyh authored and beiwei30 committed Oct 30, 2018
    Configuration menu
    Copy the full SHA
    e94d74b View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    195c82d View commit details
    Browse the repository at this point in the history
  5. 重构 ServiceBean 的 isDelay 方法,使其更符合语义 (#2686)

    * Refactor method isDelay of ServiceBean to fix the wrong meaning of the method
    
    * Remove unnecessary method isDelay of ServiceBean
    code4wt authored and beiwei30 committed Oct 30, 2018
    Configuration menu
    Copy the full SHA
    4d0a36c View commit details
    Browse the repository at this point in the history
  6. 【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
    tswstarplanet authored and beiwei30 committed Oct 30, 2018
    Configuration menu
    Copy the full SHA
    0a116aa View commit details
    Browse the repository at this point in the history

Commits on Oct 31, 2018

  1. replace ServiceAnnotationBeanPostProcessor log.isInfoEnabled->log.isW…

    …arnEnabled (#2712)
    
    simplify ExtensionLoader code segment
    vkeeper authored and beiwei30 committed Oct 31, 2018
    Configuration menu
    Copy the full SHA
    c21cc05 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2018

  1. [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
    chickenlj authored and beiwei30 committed Nov 1, 2018
    Configuration menu
    Copy the full SHA
    3cf801b View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2018

  1. Merge pull request #2725, problems of graceful shutdown in 2.6.3 and …

    …some recommendation.
    beiwei30 authored and chickenlj committed Nov 5, 2018
    Configuration menu
    Copy the full SHA
    0d51bc4 View commit details
    Browse the repository at this point in the history
  2. enhance comments (#2735)

    beiwei30 authored Nov 5, 2018
    Configuration menu
    Copy the full SHA
    505d155 View commit details
    Browse the repository at this point in the history
  3. code format (#2730)

    * NullPointerException
    
    * code rule
    
    * code rule
    x-ultimate authored and beiwei30 committed Nov 5, 2018
    Configuration menu
    Copy the full SHA
    2284ede View commit details
    Browse the repository at this point in the history

Commits on Nov 6, 2018

  1. Configuration menu
    Copy the full SHA
    16f7a1e View commit details
    Browse the repository at this point in the history
  2. Simplify the code of StringUtils to make it more graceful. (#2740)

    * Simplify the code of StringUtils to make it more graceful.
    
    * Add Apache license
    code4wt authored and beiwei30 committed Nov 6, 2018
    Configuration menu
    Copy the full SHA
    aed0102 View commit details
    Browse the repository at this point in the history
  3. Add 'forks' config into xml config (#2568)

    * Add forks into xml config.
    
    * Add forks into xml config.
    
    * Add forks into xml config.
    carryxyh authored and beiwei30 committed Nov 6, 2018
    Configuration menu
    Copy the full SHA
    56b2193 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2018

  1. fix typo (#2747)

    zonghaishang authored and lovepoem committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    1a88c22 View commit details
    Browse the repository at this point in the history
  2. [DUBBO-2489] MockClusterInvoker provides local forced mock,I tested i…

    …t locally, but it doesn't work (#2742)
    beiwei30 authored and chickenlj committed Nov 7, 2018
    Configuration menu
    Copy the full SHA
    e3bd693 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b0107e7 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2018

  1. Fix the bug that ReferenceBean refers service more than once when deb…

    …ugging. (#2754)
    
    note:
    please visit http://t.cn/EAhta27 for more detail.
    code4wt authored and beiwei30 committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    aa9f16e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    20a5efb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    a7cf737 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dcbd326 View commit details
    Browse the repository at this point in the history
  5. [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
    kexianjun authored and beiwei30 committed Nov 8, 2018
    Configuration menu
    Copy the full SHA
    117d485 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2018

  1. Configuration menu
    Copy the full SHA
    7f5fd46 View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2018

  1. #2777: heartbeat threads blocks process shutdown (#2778)

    Fix heartbeat threads blocks process shutdown because its hashed-wheel-timer is non-daemon thread.
    beiwei30 authored and carryxyh committed Nov 13, 2018
    Configuration menu
    Copy the full SHA
    bff16eb View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2018

  1. oschina vote (#2786)

    beiwei30 authored Nov 14, 2018
    Configuration menu
    Copy the full SHA
    38a6511 View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2018

  1. fix typo (#2791)

    Fix typo confilict -> conflict
    kun-song authored and carryxyh committed Nov 16, 2018
    Configuration menu
    Copy the full SHA
    b1a7622 View commit details
    Browse the repository at this point in the history
  2. improvement on Parameters and CollectionUtils (#2790)

    Use CollectionUtils.toStringMap to reduce duplicate code in Parameters, and use Java 8 type inference for collections.
    kun-song authored and carryxyh committed Nov 16, 2018
    Configuration menu
    Copy the full SHA
    9466425 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2018

  1. [REFACTOR]:[fix typo] (#2804)

    fix typos
    Ivan97 authored and carryxyh committed Nov 19, 2018
    Configuration menu
    Copy the full SHA
    026fa0b View commit details
    Browse the repository at this point in the history

Commits on Nov 20, 2018

  1. [Dubbo-2798]fix apporiate NotWritablePropertyException (#2800)

    fix #2798 .
    'propertyname in java donot contain '-' but camel format'.
    kexianjun authored and cvictory committed Nov 20, 2018
    Configuration menu
    Copy the full SHA
    5ea6b33 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2018

  1. [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
    OrDTesters authored and carryxyh committed Nov 22, 2018
    Configuration menu
    Copy the full SHA
    28b3736 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2018

  1. Configuration menu
    Copy the full SHA
    a24289f View commit details
    Browse the repository at this point in the history

Commits on Nov 24, 2018

  1. fix typo of field (#2825)

    likemoongg authored and htynkn committed Nov 24, 2018
    Configuration menu
    Copy the full SHA
    46b3458 View commit details
    Browse the repository at this point in the history

Commits on Nov 29, 2018

  1. [Dubbo-2845] Fix OOM in UT testSelectByWeight (#2845) (#2846)

    Fix OOM Exception generated during UT
    biyuhao authored and carryxyh committed Nov 29, 2018
    Configuration menu
    Copy the full SHA
    5aeb049 View commit details
    Browse the repository at this point in the history
  2. Fix UT failed on windows with FileNetworkerTest (#2848)

    Fix FileNetworkerTest failure
    water-coder authored and carryxyh committed Nov 29, 2018
    Configuration menu
    Copy the full SHA
    bc6a06c View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2018

  1. Update README.md

    remove oschina vote
    beiwei30 authored Dec 3, 2018
    Configuration menu
    Copy the full SHA
    133d570 View commit details
    Browse the repository at this point in the history

Commits on Dec 4, 2018

  1. fixed typo of variable (#2875)

    fixed type of variable
    zzkyeee authored and carryxyh committed Dec 4, 2018
    Configuration menu
    Copy the full SHA
    32140d4 View commit details
    Browse the repository at this point in the history
  2. Remove unnessesary code in RegistryDirectory#doList (#2861)

    * remove unnessesary code
    
    * remove unused import
    LiZhenNet authored and beiwei30 committed Dec 4, 2018
    Configuration menu
    Copy the full SHA
    d0f7c05 View commit details
    Browse the repository at this point in the history
  3. add some ScriptRoute test case (#2879)

    * add router test case
    
    * correct an error word
    lixiaojiee authored and beiwei30 committed Dec 4, 2018
    Configuration menu
    Copy the full SHA
    1f751a6 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2018

  1. remove the duplicate superclass of TagRouter and ConditionRouter (#2885)

    Remove the class ConditionRouter and TagRouter implement duplicate superclass Comparable
    lixiaojiee authored and carryxyh committed Dec 5, 2018
    Configuration menu
    Copy the full SHA
    e8af04d View commit details
    Browse the repository at this point in the history