Alex

Results 9 comments of Alex

Hi, +1 on this issue. I was unable to use python neo4j driver, unless I add `--bolt-server-name-for-init=Neo4j/4.4.0` to the config. Is there any reason for this not to be the...

Also ran into this issue. Passing `token={'expires_at': -1, 'access_token': ''}` does not seem to do the job

We are also facing this issue at our organizations, any solution to allow using poetry install with the github token from github actions?

A workaround I found for this is to set the url like this: ``` REPO_URL="https://oauth2:${{ inputs.github_token }}@github.com/${GITHUB_REPOSITORY}.git" ``` I know this works for github, not sure about others. I had...

@bilalsp Hi, I ran into this issue as well. Here is what I found out so far: - The only way to parallellize queries with pymgclient is by multiprocessing -...

I'm also having this issue in pycharm 2023.1. I get autocomplete on instances of SQLModel, but can't get autocomplete on fields of the class. It does work in VSCode. Any...

+1 We are also using snowflake and this has a significant negative affect on performance. We have to rely on workaround with multiprocessing/multithreading etc. The alternative of using snowflake connector...

Hi, I recently started using this great project, thanks! I also ran into a similar issue. In my setup I also have 2 document models: ``` class A(Document): field_1: str...

Hi, we encountered a similar use case that we needed. We implemented a custom solution, to ensure that each deployment got access to just one doppler project. Basically, we created...