You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The regex is currently: ^.*\/(?P<namespace>[^_]+)_(?P<pod_name>[^_]+)_(?P<uid>[a-f0-9\-]{36})\/(?P<container_name>[^\._]+)\/(?P<run_id>\d+)\.log$
The uid check for 36 characters is too strict. I had to change the capture group to (?P<uid>[^\/]+), which also matches with what is currently in PR #38
The text was updated successfully, but these errors were encountered:
The regex is currently:
^.*\/(?P<namespace>[^_]+)_(?P<pod_name>[^_]+)_(?P<uid>[a-f0-9\-]{36})\/(?P<container_name>[^\._]+)\/(?P<run_id>\d+)\.log$
The
uid
check for 36 characters is too strict. I had to change the capture group to(?P<uid>[^\/]+)
, which also matches with what is currently in PR #38The text was updated successfully, but these errors were encountered: