Skip to content

Commit

Permalink
Add port 443 of amqp host to diagnostics
Browse files Browse the repository at this point in the history
Also slightly reorder tests so ordered by hosts and port.

1. web conn (443)
2. web ssl conn (443)
3. amqp conn (443)
4. amqp ssl conn (443)
5. amqp conn (5761)
6. amqp ssl conn (5761)
  • Loading branch information
khk-globus committed Dec 6, 2024
1 parent 0870047 commit c2e683c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion compute_sdk/globus_compute_sdk/sdk/diagnostic.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,10 @@ def connection_tests():

return [
test_conn(web_svc_host, 443),
test_conn(amqp_svc_host, 5671),
test_ssl_conn(web_svc_host, 443),
test_conn(amqp_svc_host, 443),
test_ssl_conn(amqp_svc_host, 443),
test_conn(amqp_svc_host, 5671),
test_ssl_conn(amqp_svc_host, 5671),
print_service_versions(web_svc_url),
]
Expand Down

0 comments on commit c2e683c

Please sign in to comment.