From c8ba2d3ca8912c878a3b2beed6ffbb02bdcb28ac Mon Sep 17 00:00:00 2001 From: LongKB Date: Thu, 21 Feb 2019 14:21:25 +0700 Subject: [PATCH] Replacing 'HTTP' by 'HTTPS' for securing links (#2591) Currently, there are some links that we access with **HTTP**, it is redirected to **HTTPS** automatically. So this commit aims to replace **http://...** by **https://...** for security. Co-Authored-By: Nguyen Phuong An Signed-off-by: Kim Bao Long --- plugin/file/tree/less.go | 2 +- .../apache/thrift/lib/go/thrift/simple_json_protocol.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/file/tree/less.go b/plugin/file/tree/less.go index 3b8340088..7421cf08d 100644 --- a/plugin/file/tree/less.go +++ b/plugin/file/tree/less.go @@ -10,7 +10,7 @@ import ( // >0 when a is larger than b. // The function orders names in DNSSEC canonical order: RFC 4034s section-6.1 // -// See http://bert-hubert.blogspot.co.uk/2015/10/how-to-do-fast-canonical-ordering-of.html +// See https://bert-hubert.blogspot.co.uk/2015/10/how-to-do-fast-canonical-ordering-of.html // for a blog article on this implementation, although here we still go label by label. // // The values of a and b are *not* lowercased before the comparison! diff --git a/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go b/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go index 2e8a71112..af2bcd3a6 100644 --- a/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go +++ b/vendor/github.com/apache/thrift/lib/go/thrift/simple_json_protocol.go @@ -334,7 +334,7 @@ func (p *TSimpleJSONProtocol) ReadFieldBegin() (string, TType, int16, error) { p.reader.ReadByte() name, err := p.ParseStringBody() // simplejson is not meant to be read back into thrift - // - see http://wiki.apache.org/thrift/ThriftUsageJava + // - see https://wiki.apache.org/thrift/ThriftUsageJava // - use JSON instead if err != nil { return name, STOP, 0, err