You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Via #150, we are currently downloading zipkin-server via Jitpack. There were some questions about if this is reliable, or if the lazy build of the server notably impacts master performance in a way that matters.
Since the alternative is hacky and verbose, let's just monitor and see if we need to change before using the alternative below:
# This is a parsing alternative to returning the constant: ## We are doing this to avoid a delay as snapshots are built lazily in Jitpack,# and also avoid insecurities about the version built by Jitpack.zipkin_snapshot_url() {
zipkin_base=https://oss.jfrog.org/oss-snapshot-local/io/zipkin/zipkin-server
zipkin_version=$(curl -sSL $zipkin_base/maven-metadata.xml | sed -n '/<version>/s/.*<version>\([^<]*\)<\/version>.*/\1/p'|tail -1)&& \
zipkin_build=$(curl -sSL $zipkin_base/$zipkin_version/maven-metadata.xml | sed -n '/<value>/s/.*<value>\([^<]*\)<\/value>.*/\1/p'| head -1)&& \
echo$zipkin_base/$zipkin_version/zipkin-server-$zipkin-exec.jar
}
The text was updated successfully, but these errors were encountered:
Via #150, we are currently downloading zipkin-server via Jitpack. There were some questions about if this is reliable, or if the lazy build of the server notably impacts master performance in a way that matters.
Since the alternative is hacky and verbose, let's just monitor and see if we need to change before using the alternative below:
The text was updated successfully, but these errors were encountered: