diff --git a/nettests/nettests.go b/nettests/nettests.go index fcd468b..da8d932 100644 --- a/nettests/nettests.go +++ b/nettests/nettests.go @@ -81,7 +81,6 @@ func (c *Controller) Init(nt *mk.Nettest) error { reportFilePath := c.msmtPath geoIPCountryPath := filepath.Join(utils.GeoIPDir(c.Ctx.Home), "GeoLite2-Country.mmdb") geoIPASNPath := filepath.Join(utils.GeoIPDir(c.Ctx.Home), "GeoLite2-ASN.mmdb") - caBundlePath := getCaBundlePath() msmtPath := c.msmtPath log.Debugf("OutputPath: %s", msmtPath) @@ -113,6 +112,7 @@ func (c *Controller) Init(nt *mk.Nettest) error { nt.Options.CaBundlePath = sslCertFile } + log.Debugf("CaBundlePath: %s", nt.Options.CaBundlePath) log.Debugf("GeoIPASNPath: %s", nt.Options.GeoIPASNPath) log.Debugf("GeoIPCountryPath: %s", nt.Options.GeoIPCountryPath) diff --git a/ooni.go b/ooni.go index 5e933b1..e54bb23 100644 --- a/ooni.go +++ b/ooni.go @@ -16,7 +16,7 @@ import ( "upper.io/db.v3/lib/sqlbuilder" ) -const Version = "3.0.0-beta.2" +const Version = "3.0.0-beta.3" // Context for OONI Probe type Context struct {