diff --git a/.template-version b/.template-version index cbdbd6b..dc7f943 100644 --- a/.template-version +++ b/.template-version @@ -1 +1 @@ -57b08f7eedbfa91c2aa7bf0d79797275509febd6 +1774e0f0e3285f02ed4e88baf1576136bb8458ef diff --git a/infra/test/infra_test.go b/infra/test/infra_test.go index 70f7f5c..8f63ced 100644 --- a/infra/test/infra_test.go +++ b/infra/test/infra_test.go @@ -100,11 +100,6 @@ func RunEndToEndTests(t *testing.T, terraformOptions *terraform.Options) { http_helper.HttpGetWithRetryWithCustomValidation(t, serviceEndpoint, nil, 5, 1*time.Second, func(responseStatus int, responseBody string) bool { return responseStatus == 200 }) - // Hit feature flags endpoint to make sure Evidently integration is working - featureFlagsEndpoint := fmt.Sprintf("%s/feature-flags", serviceEndpoint) - http_helper.HttpGetWithRetryWithCustomValidation(t, featureFlagsEndpoint, nil, 5, 1*time.Second, func(responseStatus int, responseBody string) bool { - return responseStatus == 200 - }) fmt.Println("::endgroup::") }