diff --git a/src/snowflake/connector/aio/_session_manager.py b/src/snowflake/connector/aio/_session_manager.py index 7fd974719..089ccad12 100644 --- a/src/snowflake/connector/aio/_session_manager.py +++ b/src/snowflake/connector/aio/_session_manager.py @@ -103,7 +103,7 @@ async def validate_ocsp( ocsp_response_cache_uri=FEATURE_OCSP_RESPONSE_CACHE_FILE_NAME, use_fail_open=self._snowflake_ocsp_mode == OCSPMode.FAIL_OPEN, hostname=hostname, - # TODO: uncomment when issues with ocsp revoked certs in tests are fixed (reapply #2559) + # TODO (SNOW-2871292): uncomment when issues with ocsp revoked certs in tests are fixed (reapply #2559) # root_certs_dict_lock_timeout=FEATURE_ROOT_CERTS_DICT_LOCK_TIMEOUT, ).validate(hostname, protocol, session_manager=session_manager) if not v: diff --git a/test/integ/aio_it/test_connection_async.py b/test/integ/aio_it/test_connection_async.py index 3d9105ae2..dd5ef70a5 100644 --- a/test/integ/aio_it/test_connection_async.py +++ b/test/integ/aio_it/test_connection_async.py @@ -1335,7 +1335,7 @@ async def test_ocsp_mode_insecure_mode_and_disable_ocsp_checks_mismatch_ocsp_ena assert "snowflake.connector.aio._ocsp_snowflake" not in caplog.text -# TODO: uncomment when issues with ocsp revoked certs in tests are fixed (reapply #2559) +# TODO (SNOW-2871292): uncomment when issues with ocsp revoked certs in tests are fixed (reapply #2559) # @pytest.mark.skipolddriver # async def test_root_certs_dict_lock_timeout_fail_open(conn_cnx): # """Test OCSP root certificates lock timeout with fail-open mode and side effect mock."""