Skip to content

Commit

Permalink
Merge branch 'upstream-develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
hxy1991 committed Nov 5, 2018
2 parents adc7ecf + b94e6fe commit d347a14
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ You can view full documentation on the Nacos website:

* [nacos.io](https://nacos.io/en-us/docs/what-is-nacos.html)

### Other Related Project Repositories

* [nacos-spring-project](https://github.com/nacos-group/nacos-spring-project) provides the integration functionality for Spring.
* [nacos-sync](https://github.com/nacos-group/nacos-sync) is a tool to synchronize the service registration information from other tools like eureka, zookeeper, etc, to Nacos.
* [spring-cloud-alibaba](https://github.com/spring-cloud-incubator/spring-cloud-alibaba) provides the one-stop solution for application development over Alibaba middleware which includes Nacos.

### Contact

* #### Gitter-[Nacos Gitter](https://gitter.im/alibaba/nacos)
Expand Down
3 changes: 0 additions & 3 deletions console/src/main/resources/static/build.sh

This file was deleted.

2 changes: 1 addition & 1 deletion console/src/main/resources/static/index.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ class ListeningToQuery extends React.Component {
if (type === 1) {
var ip = this.getValue('ip');
queryUrl = `/nacos/v1/cs/listener?ip=${ip}`;
let tenant = window.nownamespace || getParams('namespace') || '';
if (tenant) {
queryUrl += '&tenant=' + tenant;
}
} else {
var dataId = this.getValue('dataId');
var group = this.getValue('group');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class ServiceList extends React.Component {
Message.error(res)
return
}
this.props.queryServiceList()
this.queryServiceList()
},
error: res => Message.error(res.responseText || res.statusText),
complete: () => this.closeLoading()
Expand Down

0 comments on commit d347a14

Please sign in to comment.