You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2020/03/25 12:58:00 UTC

[skywalking-nginx-lua] branch master updated: Fix typo (#26)

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

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-nginx-lua.git


The following commit(s) were added to refs/heads/master by this push:
     new 16b51a7  Fix typo (#26)
16b51a7 is described below

commit 16b51a7662b3ca9a01245405fcf6a9af8f2a074b
Author: zhangzheng <zz...@163.com>
AuthorDate: Wed Mar 25 20:57:51 2020 +0800

    Fix typo (#26)
---
 examples/nginx.conf | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/examples/nginx.conf b/examples/nginx.conf
index b3a8fd4..d5f8544 100644
--- a/examples/nginx.conf
+++ b/examples/nginx.conf
@@ -78,7 +78,7 @@ http {
             default_type text/html;
 
             rewrite_by_lua_block {
-                require("tracer"):startBackendTimer()
+                require("tracer"):start("backend service")
             }
 
             proxy_pass http://127.0.0.1:8080/backend;
@@ -161,4 +161,4 @@ http {
             }
         }
     }
-}
\ No newline at end of file
+}