File tree Expand file tree Collapse file tree 7 files changed +20
-6
lines changed
Expand file tree Collapse file tree 7 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
44The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
55and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
66
7+ ## 2.6.0 - 2022-06-14
8+
9+ This will change how clowder sees the extractors. If you have an extractor, and you specify
10+ the queue name (eiter as command line argument or environment variable) the name of the
11+ extractor shown in clowder, will be the name of the queue.
12+
13+ ### Changed
14+ - when you set the RABBITMQ_QUEUE it will change the name of the extractor as well in the
15+ extractor_info document. [ #47 ] ( https://github.com/clowder-framework/pyclowder/issues/47 )
16+
717## 2.5.1 - 2022-03-04
818
919### Changed
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ create new extractors.
1515Install using pip (for most recent versions see: https://pypi.org/project/pyclowder/ ):
1616
1717```
18- pip install pyclowder==2.5.1
18+ pip install pyclowder==2.6.0
1919```
2020
2121Install pyClowder on your system by cloning this repo:
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Installation
1414Install using pip (for most recent versions see: https://pypi.org/project/pyclowder/):
1515
1616```
17- pip install pyclowder==2.5.1
17+ pip install pyclowder==2.6.0
1818```
1919
2020Install pyClowder on your system by cloning this repo:
Original file line number Diff line number Diff line change 5757# built documents.
5858#
5959# The short X.Y version.
60- version = u'2.5 '
60+ version = u'2.6 '
6161# The full version, including alpha/beta/rc tags.
62- release = u'2.5.1 '
62+ release = u'2.6.0 '
6363
6464# The language for content autogenerated by Sphinx. Refer to documentation
6565# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -123,6 +123,10 @@ def setup(self):
123123 """
124124 self .args = self .parser .parse_args ()
125125
126+ # fix extractor_info based on the queue name
127+ if self .args .rabbitmq_queuename and self .extractor_info ['name' ] != self .args .rabbitmq_queuename :
128+ self .extractor_info ['name' ] = self .args .rabbitmq_queuename
129+
126130 # use command line option for ssl_verify
127131 if 'sslverify' in self .args :
128132 self .ssl_verify = self .args .sslverify
Original file line number Diff line number Diff line change 1- pyclowder == 2.5.1
1+ pyclowder == 2.6.0
Original file line number Diff line number Diff line change 88
99setup (
1010 name = 'pyclowder' ,
11- version = '2.5.1 ' ,
11+ version = '2.6.0 ' ,
1212 description = 'Python SDK for the Clowder Data Management System' ,
1313 long_description = long_description ,
1414
You can’t perform that action at this time.
0 commit comments