Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
tests(zipkin) allow overriding zipkin host
Browse files Browse the repository at this point in the history
When developing locally, `ZIPKIN_HOST=localhost bin/busted ...` can be used.
  • Loading branch information
kikito committed Feb 10, 2021
1 parent 7b0eb53 commit 740b6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/zipkin_spec.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local to_hex = require "resty.string".to_hex

local fmt = string.format

local ZIPKIN_HOST = "zipkin"
local ZIPKIN_HOST = os.getenv("ZIPKIN_HOST") or "zipkin"
local ZIPKIN_PORT = 9411
local GRPCBIN_HOST = "grpcbin"
local GRPCBIN_PORT = 9000
Expand Down

0 comments on commit 740b6fe

Please sign in to comment.