Skip to content

Commit

Permalink
Merge pull request #190 from nacos-group/dev
Browse files Browse the repository at this point in the history
v1.3.2 release
  • Loading branch information
catcherwong authored Mar 14, 2022
2 parents 30b864a + 4e4d509 commit 479c745
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
:hidden:
:caption: Release Note

releasenote/v1.2.0
releasenote/v1.2.1
releasenote/v1.2.2
releasenote/v1.3.0
releasenote/v1.3.1
releasenote/v1.3.2

.. toctree::
:maxdepth: 2
Expand Down
2 changes: 1 addition & 1 deletion docs/releasenote/v1.3.1.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
v1.3.1 (Jan xth, 2022) 发布记录
v1.3.1 (Jan 20th, 2022) 发布记录
=============================================

1. [NAMING] Fix ServiceListRequest pageSize error
Expand Down
10 changes: 10 additions & 0 deletions docs/releasenote/v1.3.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
v1.3.2 (Mar 15th, 2022) 发布记录
=============================================

1. [NAMING] Fix QueryInstancesOfService error cluster param (#180 #181)
#. [NAMING] Fix Empty namespace issue (#187 #189)

------------

1. [NAMING] 修复 QueryInstancesOfService 请求参数错误 (#180 #181)
#. [NAMING] 修复空命名空间默认值问题 (#187 #189)
2 changes: 1 addition & 1 deletion src/Nacos/V2/Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public class Constants
{
public static string CLIENT_VERSION = "Nacos-CSharp-Client:v1.3.1";
public static string CLIENT_VERSION = "Nacos-CSharp-Client:v1.3.2";

public const string ClientName = "NacosClient";

Expand Down
2 changes: 1 addition & 1 deletion src/Nacos/V2/Naming/NacosNamingService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public NacosNamingService(
{
_logger = loggerFactory.CreateLogger<NacosNamingService>();
_options = optionAccs.Value;
_namespace = _options.Namespace;
_namespace = string.IsNullOrWhiteSpace(_options.Namespace) ? Utils.UtilAndComs.DEFAULT_NAMESPACE_ID : _options.Namespace;
this._changeNotifier = new InstancesChangeNotifier();
this._serviceInfoHolder = new ServiceInfoHolder(_logger, _namespace, _options, _changeNotifier);
this._clientProxy = new NamingClientProxyDelegate(_logger, _namespace, _serviceInfoHolder, _options, _changeNotifier, clientFactory);
Expand Down

0 comments on commit 479c745

Please sign in to comment.