-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
With this setup
my $router = Router::R3->new(
{
'/' => 'MAIN',
'/version' => 'VERSION',
}
);
sometimes path not matched
With this setup
my $router = Router::R3->new(
{
'/'=> 'MAIN',
'/version'=> 'VERSION',
'/users/'=> 'USERS',
'/users/{userid:\d+}'=> 'USERS',
'/users/{authmethod:\D+}/{authdata}'=> 'USERAUTH',
'/ping'=> 'PING',
}
);
sometimes error as:
creating R3 routing tree fail: PCRE study failed at offset (null), pattern: ^(\\D+)/|^()|^(\\d+) at ...
vandergrafgenerator
Metadata
Metadata
Assignees
Labels
No labels