From a6519ddf4849cadc5f074e111bfea5027634d570 Mon Sep 17 00:00:00 2001 From: Matias Melograno Date: Tue, 25 Oct 2022 17:55:08 -0300 Subject: [PATCH 1/4] updated readme --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4a694d9a..8fb7afc8 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # Split GO SDK -[![Build Status](https://api.travis-ci.com/splitio/go-client.svg?branch=master)](https://api.travis-ci.com/splitio/go-client) +[![build workflow](https://https://github.com/splitio/go-client/actions/workflows/build.yml/badge.svg)](https://github.com/splitio/go-client/actions) +[![PkgGoDev](https://pkg.go.dev/github.com/splitio/go-client/v6)](https://pkg.go.dev/github.com/splitio/go-client/v6/splitio?tab=doc) +[![Documentation](https://help.split.io/hc/en-us/articles/360020093652-Go-SDK)](https://help.split.io/hc/en-us/articles/360020093652-Go-SDK) ## Overview @@ -16,7 +18,7 @@ This SDK is compatible with Go 1.8. Below is a simple example that describes the instantiation and most basic usage of our SDK: -Run `go get github.com/splitio/go-client/` or `dep ensure -add github.com/splitio/go-client` +Run `go get github.com/splitio/go-client/` ```go package main From b0e618f02afe6616516b1c4b97d0041b00ed2035 Mon Sep 17 00:00:00 2001 From: Matias Melograno Date: Tue, 25 Oct 2022 17:59:46 -0300 Subject: [PATCH 2/4] updated --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8fb7afc8..05f6c23e 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Split GO SDK -[![build workflow](https://https://github.com/splitio/go-client/actions/workflows/build.yml/badge.svg)](https://github.com/splitio/go-client/actions) -[![PkgGoDev](https://pkg.go.dev/github.com/splitio/go-client/v6)](https://pkg.go.dev/github.com/splitio/go-client/v6/splitio?tab=doc) -[![Documentation](https://help.split.io/hc/en-us/articles/360020093652-Go-SDK)](https://help.split.io/hc/en-us/articles/360020093652-Go-SDK) +[![build workflow](https://github.com/splitio/go-client/actions/workflows/build.yml/badge.svg)](https://github.com/splitio/go-client/actions) +[![PkgGoDev](https://pkg.go.dev/badge/github.com/splitio/go-client/v6)](https://pkg.go.dev/github.com/splitio/go-client/v6/splitio?tab=doc) +[![Documentation](https://img.shields.io/badge/go_client-documentation-informational)](https://help.split.io/hc/en-us/articles/360020093652-Go-SDK) ## Overview From 3b8bec0691ae50c1c6c3251821257a842be4b3aa Mon Sep 17 00:00:00 2001 From: Matias Melograno Date: Tue, 25 Oct 2022 18:04:12 -0300 Subject: [PATCH 3/4] fix build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 05f6c23e..2eb53c23 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Split GO SDK -[![build workflow](https://github.com/splitio/go-client/actions/workflows/build.yml/badge.svg)](https://github.com/splitio/go-client/actions) +[![build workflow](https://github.com/splitio/go-client/actions/workflows/ci.yml/badge.svg)](https://github.com/splitio/go-client/actions) [![PkgGoDev](https://pkg.go.dev/badge/github.com/splitio/go-client/v6)](https://pkg.go.dev/github.com/splitio/go-client/v6/splitio?tab=doc) [![Documentation](https://img.shields.io/badge/go_client-documentation-informational)](https://help.split.io/hc/en-us/articles/360020093652-Go-SDK) From 592d04d3c24bcba4c89f7f19c2e53c4661d5c64a Mon Sep 17 00:00:00 2001 From: Matias Melograno Date: Tue, 25 Oct 2022 18:18:45 -0300 Subject: [PATCH 4/4] added streaming enabled false --- splitio/client/client_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/splitio/client/client_test.go b/splitio/client/client_test.go index 97ba5e61..2b2400b6 100644 --- a/splitio/client/client_test.go +++ b/splitio/client/client_test.go @@ -1778,6 +1778,7 @@ func TestClientNone(t *testing.T) { impTest := &ImpressionListenerTest{} cfg := conf.Default() cfg.LabelsEnabled = true + cfg.Advanced.StreamingEnabled = false cfg.Advanced.EventsURL = ts.URL cfg.Advanced.SdkURL = ts.URL cfg.Advanced.TelemetryServiceURL = ts.URL