diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-04-19 05:26:48 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-04-19 05:26:48 (GMT) |
commit | 5309fb20cb0ed8dba4bce2f93a6002f5d43708ca (patch) | |
tree | bf260c8862336fda1da1218ef6c49939643cddfe /rhautoimport-oi | |
parent | 1c34d6b5541d15df8eb983074023fb62149db54c (diff) |
improved error handling for RSS feed fetching
Diffstat (limited to 'rhautoimport-oi')
-rwxr-xr-x | rhautoimport-oi | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/rhautoimport-oi b/rhautoimport-oi index dc32cb9..40b9059 100755 --- a/rhautoimport-oi +++ b/rhautoimport-oi @@ -97,8 +97,11 @@ if($current_id eq $id) { print "looking for files like '$bdfile' in RSS Feed\n"; print " -> $RSS_URL\n"; -my $feed = rhautoimport::fetch_parse_rss($RSS_URL) - or die "Error fetching feed: " . XML::Feed->errstr; +my ($feed, $errstr) = rhautoimport::fetch_parse_rss($RSS_URL); +unless (defined $feed) { + print "Error fetching feed: $errstr\n"; + exit 1; +} my $uri = ""; my $file = ""; |