Commit 3cfd1fcf authored by Geoff Simmons's avatar Geoff Simmons

Prototype v0.5.8: Bugfix for XIDs was buggy, now fixed

parent 0c0fbf21
...@@ -233,7 +233,7 @@ use Getopt::Std; ...@@ -233,7 +233,7 @@ use Getopt::Std;
use Pod::Usage; use Pod::Usage;
$Getopt::Std::STANDARD_HELP_VERSION = 1; $Getopt::Std::STANDARD_HELP_VERSION = 1;
$main::VERSION = "0.5.7"; $main::VERSION = "0.5.8";
sub HELP_MESSAGE { sub HELP_MESSAGE {
pod2usage(-exit => 0, -verbose => 1); pod2usage(-exit => 0, -verbose => 1);
...@@ -649,7 +649,7 @@ sub run_varnishlog { ...@@ -649,7 +649,7 @@ sub run_varnishlog {
} }
} }
$record{$xid}{tid} = $tid; $record{$xid}{tid} = $tid;
push @{$record{xid}{data}}, "XID=$xid"; push @{$record{$xid}{data}}, "XID=$xid";
} }
elsif ($tag eq 'VCL_Log') { elsif ($tag eq 'VCL_Log') {
next unless $in[0] eq 'track'; next unless $in[0] eq 'track';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment