hpcloud 2.0.4 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/hpcloud/remote_resource.rb +2 -2
- data/lib/hpcloud/version.rb +2 -2
- metadata +1 -1
|
@@ -115,7 +115,7 @@ module HP
|
|
|
115
115
|
@cstatus = CliStatus.new("Permission denied trying to access '#{@fname}'.", :permission_denied)
|
|
116
116
|
return false
|
|
117
117
|
rescue Exception => error
|
|
118
|
-
@cstatus = CliStatus.new("Error
|
|
118
|
+
@cstatus = CliStatus.new("Error reading '#{@fname}': " + error.to_s, :general_error)
|
|
119
119
|
return false
|
|
120
120
|
end
|
|
121
121
|
end
|
|
@@ -439,8 +439,8 @@ module HP
|
|
|
439
439
|
res.size = x['bytes']
|
|
440
440
|
res.type = x['content_type']
|
|
441
441
|
yield res
|
|
442
|
-
marker = name
|
|
443
442
|
end
|
|
443
|
+
marker = name
|
|
444
444
|
}
|
|
445
445
|
break if lode < @@limit
|
|
446
446
|
end until count >= total
|
data/lib/hpcloud/version.rb
CHANGED