<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SSL v3 Handshake Failure in APIs &amp; Integrations</title>
    <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/821456#M65713</link>
    <description>&lt;P&gt;On my end, unfortunately the error hasn't disappeared yet. However, so far I haven't been able to get a packet capture because it's not well reproducible. If I manage to "catch it on camera", I'll let back to you, but this is to note that we are still affected.&lt;/P&gt;</description>
    <pubDate>Tue, 18 Jul 2023 14:54:16 GMT</pubDate>
    <dc:creator>JZamecnik</dc:creator>
    <dc:date>2023-07-18T14:54:16Z</dc:date>
    <item>
      <title>SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/811775#M65200</link>
      <description>&lt;P&gt;While running our ETL (Github Actions ubuntu-latest with Python 3.9), we are getting occassional random SSL handshake failures like this:&lt;/P&gt;&lt;DIV class=""&gt;&lt;PRE&gt;HTTPSConnectionPool(host='api.hubapi.com', port=443): Max retries exceeded with url: /crm/v3/objects/calls?limit=100&amp;amp;properties=hs_call_title&amp;amp;properties=hs_call_duration&amp;amp;after=32852742180 (Caused by SSLError(SSLError(1, '[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:1129)')))
&amp;lt;class 'requests.exceptions.SSLError'&amp;gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;Unfortunately, we can't reproduce this reliably or pinpoint the cause:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The same code (hubspot-api-python v8.0.0) sometimes runs through, sometimes fails.&lt;/LI&gt;&lt;LI&gt;We updated our dependencies (in particular urrlib3 is now at 1.26.16) without seeing an improvement.&lt;/LI&gt;&lt;LI&gt;We're not observing connection issues in any of our other workflows.&lt;/LI&gt;&lt;LI&gt;The API endpoint varies&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there anything we can do to narrow this down?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is also striking is that the error says SSL v3, i.e. the outdated, insecure protocol version.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 07:10:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/811775#M65200</guid>
      <dc:creator>JZamecnik</dc:creator>
      <dc:date>2023-06-26T07:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/811873#M65202</link>
      <description>&lt;P&gt;Yes! I was just about to report this. Happy to see your post and that we're not alone in experiencing this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We use Node.js (with axios) to make a request, each time to a different Hubspot API (CRM v3, deals v1, engagements v1). Usually everything works fine, but sometimes the error occurs and when it does, it does so in a different end point each time. However it is always the same error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;Error: write EPROTO 140067321558976:error:14094410:SSL routines:ssl3_read_bytes:sslv3 alert handshake failure:../deps/openssl/openssl/ssl/record/rec_layer_s3.c:1565:SSL alert number 40&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error started appearing sporadically on June 16th.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Seeing SSLv3, I tried to force axios to use TLSv1.2 to TLSv1.3, but it seems that is the implicit default behavior anyways. And of course it didn't change a thing, the error continues.&lt;/P&gt;&lt;P&gt;I am not sure that the "sslv3 alert" thing is referring to actual SSLv3, it might just be the name of a shared piece of code used in TLS too.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My guess? Hubspot have at least one API server with a badly configured TLS behavior, or just general faulty network behavior.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 11:24:26 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/811873#M65202</guid>
      <dc:creator>advance512</dc:creator>
      <dc:date>2023-06-26T11:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/812051#M65210</link>
      <description>&lt;P&gt;Good to see we're not the only ones. I &lt;A href="https://github.com/HubSpot/hubspot-api-python/issues/221" target="_blank" rel="noopener"&gt;raised the issue&lt;/A&gt; in the python library that we're using (though I don't think it is an issue with the library itself, esp. since you're getting the same on Node.js). So far, it hasn't been acknowledged by the devs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The theory that it depends on the server that gets the connection is definitely interesting, though I'd expect HS to avoid this kind of issues with their set-up.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 15:14:43 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/812051#M65210</guid>
      <dc:creator>JZamecnik</dc:creator>
      <dc:date>2023-06-26T15:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/812125#M65212</link>
      <description>&lt;P&gt;We're also running into this. Is there a fix coming?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Jun 2023 18:10:46 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/812125#M65212</guid>
      <dc:creator>murphpdx</dc:creator>
      <dc:date>2023-06-26T18:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/812422#M65228</link>
      <description>&lt;P&gt;You should all open a support request with Hubspot for this (send it to you representative). And upvote the thread here.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 10:46:21 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/812422#M65228</guid>
      <dc:creator>advance512</dc:creator>
      <dc:date>2023-06-27T10:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/812622#M65240</link>
      <description>&lt;P&gt;I'm seeing the exact same behavior. We have a couple of overnight jobs that have been running without issues since July 2022. We're making 3-5k api requests per night. First instance of this error started on 6/20/2023.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;SSLError(MaxRetryError("HTTPSConnectionPool(host='api.hubapi.com', port=443): Max retries exceeded with url: /crm/v3/objects/companies/search (Caused by SSLError(SSLError(1, '[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:1129)')))"))&lt;/PRE&gt;&lt;P&gt;It's failing randomly (multiple different endpoints), and sporadically as far as it may make several thousand api calls before it throws the error. So far, I've been able to just rerun the job and it will eventually run without error. This issue is now happening every night.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm also thinking that there's most likely a misconfigured server in the HubSpot farm that is causing this. Just for info, we are running vanilla Windows server (2012 R2) and a recent(ish) Python v3.9.13 setup.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm also going to open a support request with HubSpot. I just wanted to chime in here because I'm happy it's not just me, and to let you guys know you aren't alone either.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jun 2023 16:40:28 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/812622#M65240</guid>
      <dc:creator>JAnderson68</dc:creator>
      <dc:date>2023-06-27T16:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/813139#M65272</link>
      <description>&lt;P&gt;Adding a comment to boost visibility, this error has been severely damaging our internal data flows and costing my team a ton of time for the past couple of weeks. Can we get a response from a HubSpot rep in here?&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jun 2023 15:15:19 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/813139#M65272</guid>
      <dc:creator>klarsky</dc:creator>
      <dc:date>2023-06-28T15:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/813866#M65317</link>
      <description>&lt;P&gt;Chiming in that we are also experiencing this. &lt;span class="lia-unicode-emoji" title=":police_car_light:"&gt;🚨&lt;/span&gt;Hubspot devs&lt;span class="lia-unicode-emoji" title=":police_car_light:"&gt;🚨&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Jun 2023 19:03:58 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/813866#M65317</guid>
      <dc:creator>dobrynin</dc:creator>
      <dc:date>2023-06-29T19:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/813986#M65322</link>
      <description>&lt;P&gt;Any news here? I've been experiencing this as well, I had been following this post in the hopes that this might get resolved but seems like no one has responded yet. Can we please get someone to take a look at this?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 00:51:45 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/813986#M65322</guid>
      <dc:creator>AQazi5</dc:creator>
      <dc:date>2023-06-30T00:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814061#M65323</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;P&gt;I'm actually seeing an escalated case with this matter that was reported this morning. I've attached this ticket to the case and shared your link -- thanks for that, by they way!&lt;/P&gt;&lt;P&gt;I'll keep you posted on any updates as soon as I have them.&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Got this reply from our support representative yesterday, so let's hope something will happen soon. Having to re-run the jobs multiple times until we get lucky is really bad&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_steam_from_nose:"&gt;😤&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 06:53:48 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814061#M65323</guid>
      <dc:creator>JZamecnik</dc:creator>
      <dc:date>2023-06-30T06:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814334#M65358</link>
      <description>&lt;P&gt;Hi All!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to the community developer forum. We're getting a few support tickets like this. In those cases, it's believed&amp;nbsp;&lt;SPAN&gt;this is a Cloudflare related issue. It can be caused if the rate of api calls is too high and Cloudflare may think that you are DDOSing. It's recommended you slow down making the api calls to see if the issue gets resolved.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Hope that helps resolve the behavior.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Cheers!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;Elyse&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 15:55:07 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814334#M65358</guid>
      <dc:creator>EWood</dc:creator>
      <dc:date>2023-06-30T15:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814390#M65361</link>
      <description>&lt;P&gt;Elyse,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Speaking for myself - I've already carefully engineered my integrations to meet the currently published API rate limits:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.hubspot.com/docs/api/usage-details#rate-limits" target="_blank"&gt;https://developers.hubspot.com/docs/api/usage-details#rate-limits&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In these docs, it does clearly state that the error we will receive for running afoul of the rate limit will be a '429' http status code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a new rate limit? It seems your Cloudflare implementation should be aware of your current terms of service to allow for your existing rate limits AND documented error/return codes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Otherwise, a rate of 'too high', is not something I can write a software specification to. I'm looking for a concrete answer to this issue, thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 17:06:15 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814390#M65361</guid>
      <dc:creator>JAnderson68</dc:creator>
      <dc:date>2023-06-30T17:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814424#M65368</link>
      <description>&lt;P&gt;Echoing&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/425935"&gt;@JAnderson68&lt;/a&gt;. We have rate limiting in place. While we were developing our rate-limiting solution we never experienced the SSL handshake failure, but hit the 429 consistently. Furthermore an SSL handshake failure strikes me as a strange response to a DDoS attack. All resources I can find online point to misconfigured servers.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 18:29:12 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814424#M65368</guid>
      <dc:creator>dobrynin</dc:creator>
      <dc:date>2023-06-30T18:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814428#M65369</link>
      <description>&lt;P&gt;Elyse,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same here... the rate-limiting specified in the documentation tells me that I can execute 150 requests/10 seconds, which comes down to around a request per 66.67 milliseconds. I have been playing around with the throttling and currently, I am executing one request per 8000 milliseconds and still running into this, I don't think I can afford to slow it down any further.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 18:45:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814428#M65369</guid>
      <dc:creator>AQazi5</dc:creator>
      <dc:date>2023-06-30T18:45:51Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814440#M65371</link>
      <description>&lt;P&gt;Adding my voice to this. Our plan has us at 150 calls per 10 seconds too. We're currently calling at about 150 per minute and still hitting the SSL handshake issue multiple times per night. It's not a 429 response like we had in the past while developing our pipeline.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jun 2023 19:26:40 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814440#M65371</guid>
      <dc:creator>klarsky</dc:creator>
      <dc:date>2023-06-30T19:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814813#M65390</link>
      <description>&lt;P&gt;We are in the same situation as the responders above. We follow the specification that Hubspot shares in the technical documentation, to work within rate limitation. We have had no issues up until June 16th. Now we get it daily, last time I got it was &lt;EM&gt;36 minutes ago&lt;/EM&gt; today.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hubspot states in its API documentation :&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;"Any app or integration exceeding its rate limits will receive a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;429&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;error response for all subsequent API calls."&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;A href="https://developers.hubspot.com/docs/api/usage-details#error-responses" target="_blank" rel="noopener"&gt;https://developers.hubspot.com/docs/api/usage-details#error-responses&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this case,&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/189379"&gt;@EWood&lt;/a&gt;, it seems that your product has stopped working as per your product definition: it does not return a 429 error response, rather, it sporadically and randomly returns a cryptic SSL3 error. All immediate subsequent API calls however, work successfully!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To me, it is pretty clear it is a bug in your system, I am sorry to say..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could we get an official Hubspot confirmation that this is indeed a bug?&lt;/P&gt;&lt;P&gt;Could we get an estimation for fixing the issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Jul 2023 09:37:04 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/814813#M65390</guid>
      <dc:creator>advance512</dc:creator>
      <dc:date>2023-07-03T09:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/815937#M65440</link>
      <description>&lt;P&gt;Thanks everyone for continuing to provide details and for your patience as we traverse this behavior during week of rest. We do have an internal investigation filed and will provide new insights as they develop.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note that&amp;nbsp;a priority has been added to the case, however this might be delayed until Monday, July 10th as this is when our full team returns back to the office.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again for understanding!&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Elyse&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2023 16:51:03 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/815937#M65440</guid>
      <dc:creator>EWood</dc:creator>
      <dc:date>2023-07-05T16:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/816302#M65460</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;P&gt;My guess? Hubspot have at least one API server with a badly configured TLS behavior, or just general faulty network behavior.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;SPAN&gt;I agree with that. We saw ~20 errors (per day) like that in the past but since 16th of June there are around 100 (per day). Let's wait for HubSpot team to investigate it.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2023 10:54:30 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/816302#M65460</guid>
      <dc:creator>LF-integrations</dc:creator>
      <dc:date>2023-07-06T10:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/818462#M65586</link>
      <description>&lt;P&gt;Hey, y'all. My internal resources asked if any of you have the following details to share?&lt;/P&gt;
&lt;P&gt;Their request – “Both or either of the full error logs and packet capture would be helpful.”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can post here or DM them to me.&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/187790"&gt;@JZamecnik&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/126992"&gt;@LF-integrations&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/95068"&gt;@advance512&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.hubspot.com/t5/user/viewprofilepage/user-id/591199"&gt;@klarsky&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;/P&gt;
&lt;P&gt;Jaycee&lt;/P&gt;</description>
      <pubDate>Tue, 11 Jul 2023 20:18:51 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/818462#M65586</guid>
      <dc:creator>Jaycee_Lewis</dc:creator>
      <dc:date>2023-07-11T20:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: SSL v3 Handshake Failure</title>
      <link>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/819948#M65651</link>
      <description>&lt;P&gt;Hi and thanks for the reply. I'll see what I can do about the packet capture.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the error log, the only error I get from the HubSpot Python client is the one posted above in various incarnations. Here the latest one:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ERROR:root:Updating contacts (customers and non-customers) in HubSpot
HTTPSConnectionPool(host='api.hubapi.com', port=443): Max retries exceeded with url: /crm/v3/objects/contacts/batch/update (Caused by SSLError(SSLError(1, '[SSL: SSLV3_ALERT_HANDSHAKE_FAILURE] sslv3 alert handshake failure (_ssl.c:1129)')))
&amp;lt;class 'requests.exceptions.SSLError'&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you be more specific about the "full error logs"? Do you mean setting the loglevel of the hubspot library to DEBUG for more context? I doubt my own internal log messages are of any help, there.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jul 2023 10:34:02 GMT</pubDate>
      <guid>https://community.hubspot.com/t5/APIs-Integrations/SSL-v3-Handshake-Failure/m-p/819948#M65651</guid>
      <dc:creator>JZamecnik</dc:creator>
      <dc:date>2023-07-14T10:34:02Z</dc:date>
    </item>
  </channel>
</rss>

