Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
AIO Gremlin
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Goblin OGM
AIO Gremlin
Compare revisions
94a0c29cd196ec8acb3f72a915ae4a1953bcfbb2 to 2560509c893cbb2ff24d6c1887f7efc48056beeb
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
goblin-ogm/aiogremlin
Select target project
No results found
2560509c893cbb2ff24d6c1887f7efc48056beeb
Select Git revision
Swap
Target
goblin-ogm/aiogremlin
Select target project
goblin-ogm/aiogremlin
grzn/aiogremlin
2 results
94a0c29cd196ec8acb3f72a915ae4a1953bcfbb2
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Added IntelliJ IDE files to .gitignore.
· 0d5bae8d
Jeffrey Phillips Freeman
authored
2 years ago
0d5bae8d
Fixed incompatability with python 3.10, passes tests now.
· 2560509c
Jeffrey Phillips Freeman
authored
2 years ago
2560509c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
aiogremlin/driver/pool.py
+1
-1
1 addition, 1 deletion
aiogremlin/driver/pool.py
with
3 additions
and
1 deletion
.gitignore
View file @
2560509c
...
...
@@ -54,3 +54,5 @@ docs/_build/
# PyBuilder
target/
.idea/
This diff is collapsed.
Click to expand it.
aiogremlin/driver/pool.py
View file @
2560509c
...
...
@@ -106,7 +106,7 @@ class ConnectionPool:
self
.
_max_inflight
=
max_inflight
self
.
_response_timeout
=
response_timeout
self
.
_message_serializer
=
message_serializer
self
.
_condition
=
asyncio
.
Condition
(
loop
=
self
.
_loop
)
self
.
_condition
=
asyncio
.
Condition
()
self
.
_available
=
collections
.
deque
()
self
.
_acquired
=
collections
.
deque
()
self
.
_provider
=
provider
...
...
This diff is collapsed.
Click to expand it.