You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/07/24 14:08:26 UTC

[dubbo-go-samples] branch 3.0 updated (328a5aa -> 52b8c28)

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

alexstocks pushed a change to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git.


    omit 328a5aa  change the wrong comment
     new 52b8c28  change the wrong comment

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (328a5aa)
            \
             N -- N -- N   refs/heads/3.0 (52b8c28)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 README.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

[dubbo-go-samples] 01/01: change the wrong comment

Posted by al...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

alexstocks pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go-samples.git

commit 52b8c28e4c6d1b4c866a30551e1919d9589cd4bb
Author: AlexStocks <al...@foxmail.com>
AuthorDate: Sat Jul 24 20:11:38 2021 +0800

    change the wrong comment
---
 README.md           | 10 +++++-----
 logger/README.md    |  4 ++--
 logger/README_zh.md |  4 ++--
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md
index 2f2e04b..e2c9bd7 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@
 ## What It Contains
 
 * async: An async example.
-* attachment: An attachment example, to show how to use attachment to pass user data from the client to the server.  
+* attachment: An attachment example, to show how to use attachment to pass user data from the client to the server.
 * configcenter: uses of different config centers, including zookeeper, apollo and nacos at present.
 * direct: A direct invocation example.
 * filter: Some examples of different filter, including custom_filter and tpslimit
@@ -24,11 +24,11 @@
 
 ## How To Run
 
-Pls. refer [How To Run](HOWTO.md) for the instructions.
+Pls refer [How To Run](HOWTO.md) for the instructions.
 
 ## How to contribute
 
 If you want to add more samples, pls. read on:
-1. Create new sub directory and give it an appropriate name for your new sample. Pls. follow the layout of the existing sample if you are not sure how to organize your code.
-2. Make sure your sample work as expected before submit PR, and make sure GitHub CI passes after PR is submitted. Pls. refer to the existing sample on how to test the sample.   
-3. Pls. provide README.md to explain your samples.
+1. Create new sub directory and give it an appropriate name for your new sample. Pls follow the layout of the existing sample if you are not sure how to organize your code.
+2. Make sure your sample work as expected before submit PR, and make sure GitHub CI passes after PR is submitted. Pls refer to the existing sample on how to test the sample.
+3. Pls provide README.md to explain your samples.
diff --git a/logger/README.md b/logger/README.md
index f072945..3ea4e85 100755
--- a/logger/README.md
+++ b/logger/README.md
@@ -10,7 +10,7 @@ Output file settings
 lumberjackConfig:
   # The name of the log file
   filename: "logs.log"
-  # The maximum size of each log file length, the default is 100M
+  # The maximum size of each log file length whose unit is MiB. The default value is 100MiB.
   maxSize: 1
   # Maximum number of days to keep logs (only keep the logs of the most recent days)
   maxAge: 3
@@ -113,4 +113,4 @@ func test() {
 	}
 	logger.Infof("response result: %v\n", user)
 }
-```
\ No newline at end of file
+```
diff --git a/logger/README_zh.md b/logger/README_zh.md
index 507c88b..94d432d 100755
--- a/logger/README_zh.md
+++ b/logger/README_zh.md
@@ -10,7 +10,7 @@
 lumberjackConfig:
   # 写日志的文件名称
   filename: "logs.log"
-  # 每个日志文件长度的最大大小,默认100M
+  # 每个日志文件长度的最大大小,单位是 MiB。默认100MiB
   maxSize: 1
   # 日志保留的最大天数(只保留最近多少天的日志)
   maxAge: 3
@@ -113,4 +113,4 @@ func test() {
 	}
 	logger.Infof("response result: %v\n", user)
 }
-```
\ No newline at end of file
+```