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
Commits
50085d40
Commit
50085d40
authored
3 years ago
by
Piotr Maślanka
Browse files
Options
Downloads
Patches
Plain Diff
replaced python-prctl with setproctitle, v1.2.15
parent
696581ec
No related branches found
Branches containing commit
Tags
v1.2.15
Tags containing commit
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
CHANGELOG.md
+3
-0
3 additions, 0 deletions
CHANGELOG.md
coolamqp/__init__.py
+1
-1
1 addition, 1 deletion
coolamqp/__init__.py
coolamqp/utils.py
+1
-1
1 addition, 1 deletion
coolamqp/utils.py
docs/tutorial.rst
+2
-2
2 additions, 2 deletions
docs/tutorial.rst
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
8 additions
and
5 deletions
CHANGELOG.md
+
3
−
0
View file @
50085d40
...
...
@@ -3,3 +3,6 @@ on GitHub. This file serves to only note what changes
have been made so far, between releases.
# v1.2.15
*
replaced
`python-prctl`
with
`setproctitle`
thanks to the latter
having less fascist license (BSD vs GNU GPL v3)
This diff is collapsed.
Click to expand it.
coolamqp/__init__.py
+
1
−
1
View file @
50085d40
__version__
=
'
1.2.15
a1
'
__version__
=
'
1.2.15
'
This diff is collapsed.
Click to expand it.
coolamqp/utils.py
+
1
−
1
View file @
50085d40
...
...
@@ -10,7 +10,7 @@ except IMPORT_ERRORS:
from
monotonic
import
monotonic
try
:
from
prct
l
import
set
_nam
e
as
prctl_set_name
from
set
pr
o
ct
itle
import
set
proctitl
e
as
prctl_set_name
except
IMPORT_ERRORS
:
def
prctl_set_name
(
name
):
pass
...
...
This diff is collapsed.
Click to expand it.
docs/tutorial.rst
+
2
−
2
View file @
50085d40
...
...
@@ -31,10 +31,10 @@ accepts a list of nodes:
*wait=True* will block until connection is completed. After this, you can use other methods.
*name* is optional. If you specify it, and have prct
l
_ installed, the thread will
*name* is optional. If you specify it, and have
set
pr
o
ct
itle
_ installed, the thread will
receive a provided label, postfixed by **AMQP listener thread**.
.. _prct
l
: https://pypi.org/project/
python-
prct
l
/
.. _
set
pr
o
ct
itle
: https://pypi.org/project/
set
pr
o
ct
itle
/
.. autoclass:: coolamqp.clustering.Cluster
:members:
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
50085d40
...
...
@@ -14,7 +14,7 @@ setup(keywords=['amqp', 'rabbitmq', 'client', 'network', 'ha', 'high availabilit
python_requires
=
'
!=2.7.*,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*
'
,
extras_require
=
{
'
:python_version ==
"
2.7
"'
:
[
'
futures
'
,
'
typing
'
,
'
monotonic
'
],
'
prct
l
'
:
[
'
prct
l
'
],
'
set
pr
o
ct
itle
'
:
[
'
set
pr
o
ct
itle
'
],
'
opentracing
'
:
[
'
opentracing
'
],
'
gevent
'
:
[
'
gevent
'
]
}
...
...
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