Skip to content
Snippets Groups Projects
Commit 30609960 authored by Jack Moore's avatar Jack Moore
Browse files

Merge branch 'oc2013' into 'master'

Oc2013

See merge request !132
parents 5e8f6240 a700dfe7
No related branches found
No related tags found
1 merge request!132Oc2013
Pipeline #366202347 passed
......@@ -50,7 +50,7 @@ class ProxyLogsController < ApplicationController
while(a.length < 200)
if a.length == 0
log.tail(1) do |line|
if !line.start_with?("10.17.0.2")
if !(line.include?("Wget") || line.include?("curl"))
a.append(line)
log_index = log_index + 1
end
......@@ -61,7 +61,7 @@ class ProxyLogsController < ApplicationController
a.append(nil)
log_index = log_index + 1
else
if !line.start_with?("10.17.0.2")
if !(line.include?("Wget") || line.include?("curl"))
a.append(line)
log_index = log_index + 1
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment