Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
HELpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
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
hive
HELpy
Commits
1b0adafd
Commit
1b0adafd
authored
2 months ago
by
Krzysztof Mochocki
Browse files
Options
Downloads
Patches
Plain Diff
Fix log marker in _is_synchronous
parent
e311398c
No related branches found
No related tags found
1 merge request
!73
Clive integration related fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
helpy/helpy/_handles/abc/handle.py
+2
-2
2 additions, 2 deletions
helpy/helpy/_handles/abc/handle.py
with
2 additions
and
2 deletions
helpy/helpy/_handles/abc/handle.py
+
2
−
2
View file @
1b0adafd
...
@@ -135,7 +135,7 @@ class AbstractAsyncHandle(AbstractHandle[ApiT], SelfContextAsync, ABC):
...
@@ -135,7 +135,7 @@ class AbstractAsyncHandle(AbstractHandle[ApiT], SelfContextAsync, ABC):
return
self
.
_response_handle
(
response
=
response
,
expected_type
=
expected_type
)
return
self
.
_response_handle
(
response
=
response
,
expected_type
=
expected_type
)
def
_is_synchronous
(
self
)
->
bool
:
def
_is_synchronous
(
self
)
->
bool
:
return
Tru
e
return
Fals
e
def
_get_recommended_communicator
(
self
)
->
AbstractCommunicator
:
def
_get_recommended_communicator
(
self
)
->
AbstractCommunicator
:
return
AioHttpCommunicator
(
settings
=
self
.
_settings
)
return
AioHttpCommunicator
(
settings
=
self
.
_settings
)
...
@@ -163,7 +163,7 @@ class AbstractSyncHandle(AbstractHandle[ApiT], SelfContextSync, ABC):
...
@@ -163,7 +163,7 @@ class AbstractSyncHandle(AbstractHandle[ApiT], SelfContextSync, ABC):
return
self
.
_response_handle
(
response
=
response
,
expected_type
=
expected_type
)
return
self
.
_response_handle
(
response
=
response
,
expected_type
=
expected_type
)
def
_is_synchronous
(
self
)
->
bool
:
def
_is_synchronous
(
self
)
->
bool
:
return
Fals
e
return
Tru
e
def
_get_recommended_communicator
(
self
)
->
AbstractCommunicator
:
def
_get_recommended_communicator
(
self
)
->
AbstractCommunicator
:
return
RequestCommunicator
(
settings
=
self
.
_settings
)
return
RequestCommunicator
(
settings
=
self
.
_settings
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment