We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9581241 commit bb8aadeCopy full SHA for bb8aade
lib/logstash/inputs/azure_blob_storage.rb
@@ -235,7 +235,9 @@ def run(queue)
235
chunk = full_read(name)
236
size=chunk.size
237
rescue Exception => e
238
- @logger.error("Failed to read #{name} because of: #{e.message} .. will continue and pretend this never happened")
+ @logger.error("Failed to read #{name} because of: #{e.message} .. will continue, set file as read and pretend this never happened")
239
+ @logger.error("#{size} size and #{file[:length]} file length")
240
+ size = file[:length]
241
end
242
else
243
@logger.info("found a zero size file #{name}")
0 commit comments