mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 06:37:19 -04:00
- fix LOGSTASH-1016 (bad variable name)
This commit is contained in:
parent
56a9331c61
commit
f7b6e460e5
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ class << java.lang.System
|
|||
|
||||
# open both files in 'binary' mode (sets encoding to BINARY aka
|
||||
# ASCII-8BIT).
|
||||
input = File.new(path, "rb")
|
||||
input = File.new(value, "rb")
|
||||
output = File.new(extracted_path, "wb")
|
||||
output.write(chunk) while chunk = input.read(16384)
|
||||
input.close
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue