You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by hu...@apache.org on 2021/08/31 12:37:47 UTC

[dubbo-js] branch master updated: fix: exchange the wrong order of version and group

This is an automated email from the ASF dual-hosted git repository.

hufeng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-js.git


The following commit(s) were added to refs/heads/master by this push:
     new cb38b86  fix: exchange the wrong order of version and group
     new 28e499b  Merge pull request #253 from KenyeeC/fix/stringify_dubboServiceUrl
cb38b86 is described below

commit cb38b8615e551f4a1af3bef0b726d9f95789a840
Author: zhangjianye1 <zh...@joyy.sg>
AuthorDate: Tue Aug 31 17:59:56 2021 +0800

    fix: exchange the wrong order of version and group
---
 packages/dubbo-consumer/src/dubbo.ts | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/packages/dubbo-consumer/src/dubbo.ts b/packages/dubbo-consumer/src/dubbo.ts
index cdd62f1..f4e6f7d 100644
--- a/packages/dubbo-consumer/src/dubbo.ts
+++ b/packages/dubbo-consumer/src/dubbo.ts
@@ -137,8 +137,8 @@ export default class Dubbo<TService = Object> {
           category: 'consumers',
           method: '',
           revision: version,
-          version: group,
-          group: version,
+          version: version,
+          group: group,
           timeout: timeout,
           side: 'consumer',
           check: false,