]
Galder Zamarreño updated ISPN-2733:
-----------------------------------
Fix Version/s: 5.2.0.CR3
(was: 5.2.0.Final)
Issue with the release script (bin/release.py)
----------------------------------------------
Key: ISPN-2733
URL:
https://issues.jboss.org/browse/ISPN-2733
Project: Infinispan
Issue Type: Bug
Affects Versions: 5.2.0.CR1
Reporter: Mircea Markus
Assignee: Tristan Tarrant
Priority: Critical
Fix For: 5.2.0.CR3
I get the following exception when running the release script:
{quote}
[INFO] Step 6: Uploading Artifacts
Traceback (most recent call last):
File "./bin/release.py", line 367, in <module>
release()
File "./bin/release.py", line 332, in release
do_task(upload_artifacts, [base_dir % "as-modules", version],
async_processes)
TypeError: not all arguments converted during string formatting
{quote}
Seems like there's an incorrect string concatenation at line 332:
{code}
do_task(upload_artifacts, [base_dir % "as-modules", version],
async_processes)
{code}
Using string concatenation seems to solve the problem:
{code}
do_task(upload_artifacts, [base_dir + "/as-modules", version],
async_processes)
{code}
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: