Andrew
Andrew
ok, I understand now, thank you.
@knoopum can you please export your table to a FGDB and share it? or share the URL?
The issue is if contributors help and want to use the project in your project, GPL turns them away.
I just wanted to follow up with this. Your license currently makes any other project open source as well. Can you please switch it?
@sigmavirus24 this doesn't fix the recursion issue we see in issue #6715
@nateprewitt when I create an adapter using truststore per the guidance of that issue. This workaround is now broken. Using the code above, it works, but it's odd. ``` class...
On requests 2.32.x with truststore we are seeing a maximum recursion error with verify=True on windows Jupyter labs and jupyter notebook environments. ``` import requests with requests.Session() as session: print(session.get("https://www.arcgis.com/sharing/rest/portals/self?f=json").text)...
 It recursively occurs here. full stack attached: [full-stack-error.txt](https://github.com/psf/requests/files/15416590/full-stack-error.txt)
Dug in a bit more: ``` import requests print(requests.get("https://www.arcgis.com/sharing/rest/portals/self?f=json").text) with requests.Session() as session: print(session.get("https://www.arcgis.com/sharing/rest/portals/self?f=json").text) ``` The above works on windows Below will fails on windows. Works on Mac/Linux ``` import...
@nateprewitt For the adapter issue with 2.32.x do developers need to modify their logic? Is that documented anywhere if so? Also thank you for the quick fix!