Signed-off-by: Xu Xijian hdxuxijian@163.com --- src/extract-stats/stats_worker.cr | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/extract-stats/stats_worker.cr b/src/extract-stats/stats_worker.cr index bcf6e52..4a6ce0f 100644 --- a/src/extract-stats/stats_worker.cr +++ b/src/extract-stats/stats_worker.cr @@ -102,6 +102,7 @@ class StatsWorker STDERR.puts e.message next end + next if is_exists
new_error_ids << error_id
On Wed, Dec 02, 2020 at 10:33:42AM +0800, Xu Xijian wrote:
Signed-off-by: Xu Xijian hdxuxijian@163.com
src/extract-stats/stats_worker.cr | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/extract-stats/stats_worker.cr b/src/extract-stats/stats_worker.cr index bcf6e52..4a6ce0f 100644 --- a/src/extract-stats/stats_worker.cr +++ b/src/extract-stats/stats_worker.cr @@ -102,6 +102,7 @@ class StatsWorker STDERR.puts e.message next end
That's no need, you can use crystal-format then fix another style.
Thanks, Xueliang
next if is_exists new_error_ids << error_id
-- 2.23.0
On Wed, Dec 02, 2020 at 10:36:37AM +0800, Cao Xueliang wrote:
On Wed, Dec 02, 2020 at 10:33:42AM +0800, Xu Xijian wrote:
Signed-off-by: Xu Xijian hdxuxijian@163.com
src/extract-stats/stats_worker.cr | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/extract-stats/stats_worker.cr b/src/extract-stats/stats_worker.cr index bcf6e52..4a6ce0f 100644 --- a/src/extract-stats/stats_worker.cr +++ b/src/extract-stats/stats_worker.cr @@ -102,6 +102,7 @@ class StatsWorker STDERR.puts e.message next end
That's no need, you can use crystal-format then fix another style.
Thanks, Xueliang
got it.
Thanks, Xijian