fix tomcat web sessions (#1053)
This commit is contained in:
parent
1ea5724672
commit
811deb32d0
|
@ -78,7 +78,7 @@ sub manage_selection {
|
|||
|
||||
my $webcontent = $self->{http}->request();
|
||||
|
||||
while ($webcontent =~ m/(.*):(.*):(.*):(.*)/g) {
|
||||
while ($webcontent =~ /(.*):(.*):(\d+):(.*)/g) {
|
||||
my ($context, $state, $sessions, $contextpath) = ($1, $2, $3, $4);
|
||||
|
||||
next if (defined($self->{option_results}->{filter_state}) && $self->{option_results}->{filter_state} ne '' &&
|
||||
|
|
Loading…
Reference in New Issue