Skip to content

Commit

Permalink
IVXXXXX using different efix IVXXXXX package
Browse files Browse the repository at this point in the history
If you check the efix IV71217 doesn't uses the IV71217*.epkg.Z
file for example.
In this case the IV71217 uses IV69760.*.epkg.Z

The fix is not downloaded and cannot be tested properly

http://www-01.ibm.com/support/docview.wss?uid=isg1IV71217

Now the datacollector.py searchs for all IV* files.

Change-Id: I87d6440d0c842cd901f7805f97d9fb46567270ba
Closes-Bug: #1
  • Loading branch information
kairoaraujo committed Mar 1, 2017
1 parent 14b641f commit 9d2a81a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1
0.1.1
2 changes: 1 addition & 1 deletion saassist/datacollector.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def _apar_query(row):
apar_dwn_link = apar_dwl_cnt.find_all('a')
# search for link that has the IV name
for apar_link in apar_dwn_link:
if re.search(apar, apar_link.text):
if re.search('IV[0-9][0-9][0-9][0-9][0-9]', apar_link.text):
apar_download_link.append('{0}{1}'.format(
download.strip(),
apar_link.text
Expand Down

0 comments on commit 9d2a81a

Please sign in to comment.