Skip to content

Commit

Permalink
adding URL print statement to flakey test (#2326)
Browse files Browse the repository at this point in the history
  • Loading branch information
soneillf5 authored Jan 4, 2022
1 parent c4ce9f0 commit 1cf4513
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/suite/test_virtual_server_mixed_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,12 @@ def test_config_after_setup(self, kube_apis, ingress_controller_prerequisites, c
assert_proxy_entries_exist(config)

print("\nStep 2: check connection to http backend")
print("\nrequest URL: ", virtual_server_setup.backend_2_url)
resp = requests.get(virtual_server_setup.backend_2_url, headers={"host": virtual_server_setup.vs_host})
print("Response from http backend: {}".format(resp))
assert resp.status_code == 200

print("\nStep 2: Check connection to app")
print("\nStep 3: Check connection to app")
cert = get_certificate(virtual_server_setup.public_endpoint.public_ip,
virtual_server_setup.vs_host,
virtual_server_setup.public_endpoint.port_ssl)
Expand Down

0 comments on commit 1cf4513

Please sign in to comment.