Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
coolamqp
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package 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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
public
coolamqp
Merge requests
!6
CoolAMQP 2.0.0
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
CoolAMQP 2.0.0
milestone-2.0.0
into
develop
Overview
0
Commits
18
Pipelines
8
Changes
32
Merged
Piotr Maślanka
requested to merge
milestone-2.0.0
into
develop
9 months ago
Overview
0
Commits
18
Pipelines
8
Changes
32
Expand
incompatible with 1.x.x
👍
0
👎
0
Merge request reports
Compare
develop
version 7
40191cef
8 months ago
version 6
83cf7243
8 months ago
version 5
652cb57d
8 months ago
version 4
ccb59b44
9 months ago
version 3
51fd0343
9 months ago
version 2
e80bad62
9 months ago
version 1
4ac48845
9 months ago
develop (base)
and
latest version
latest version
f0d69835
18 commits,
8 months ago
version 7
40191cef
17 commits,
8 months ago
version 6
83cf7243
15 commits,
8 months ago
version 5
652cb57d
13 commits,
8 months ago
version 4
ccb59b44
11 commits,
9 months ago
version 3
51fd0343
9 commits,
9 months ago
version 2
e80bad62
9 commits,
9 months ago
version 1
4ac48845
8 commits,
9 months ago
32 files
+
490
−
247
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
32
Search (e.g. *.vue) (Ctrl+P)
coolamqp/attaches/channeler.py
+
2
−
2
Options
@@ -8,6 +8,7 @@ from __future__ import print_function, absolute_import, division
import
logging
import
typing
as
tp
import
coolamqp.argumentify
from
coolamqp.framing.definitions
import
ChannelOpen
,
ChannelOpenOk
,
\
ChannelClose
,
ChannelCloseOk
,
BasicCancel
,
\
BasicCancelOk
@@ -161,8 +162,7 @@ class Channeler(Attache):
self
.
channel_id
=
None
if
isinstance
(
payload
,
ChannelClose
):
logger
.
debug
(
'
Channel closed: %s %s
'
,
payload
.
reply_code
,
payload
.
reply_text
.
tobytes
())
logger
.
debug
(
'
Channel closed: %s %s
'
,
payload
.
reply_code
,
payload
.
reply_text
)
def
methods
(
self
,
payloads
):
# type: (tp.Iterable[coolamqp.framing.base.AMQPMethodPayload]) -> None
Loading