This is an automated email from the ASF dual-hosted git repository.
hanahmily pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking.git
The following commit(s) were added to refs/heads/master by this push:
new 202918c Update docker-entrypoint.sh (#2731)
202918c is described below
commit 202918cbea7337cce4f2e07167359025108a668d
Author: QIliang <[email protected]>
AuthorDate: Wed May 22 17:17:23 2019 +0800
Update docker-entrypoint.sh (#2731)
shuod ${var_application_file} not \${var_application_file}
---
docker/oap/docker-entrypoint.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker/oap/docker-entrypoint.sh b/docker/oap/docker-entrypoint.sh
index b44d612..ebed512 100755
--- a/docker/oap/docker-entrypoint.sh
+++ b/docker/oap/docker-entrypoint.sh
@@ -224,7 +224,7 @@ EOT
fi
if [[ "$SW_EXPORTER_ENABLED" = "true" ]]; then
- cat <<EOT >> \${var_application_file}
+ cat <<EOT >> ${var_application_file}
exporter:
grpc:
targetHost: \${SW_EXPORTER_GRPC_HOST:127.0.0.1}