Commit f0d48b83d74867fe656a080aefbc56bbf033357a introduces a new warning:
Probably you need a username,password and realm at /Users/matthiasvandermaesen/.plenv/versions/5.22.0/lib/perl5/site_perl/5.22.0/Catmandu/Importer/OAI.pm line 368.
Caused by this line:
carp "Probably you need a username,password and realm" unless $self->realm;
In our case, "realm" is not used / optional. We log in with NTLM through a username & password. When we pass an empty string or undef, we still get this message.
Also, the message is not really clear in it's wording ('probably', non-exclusive 'and') .
Commit f0d48b83d74867fe656a080aefbc56bbf033357a introduces a new warning:
Caused by this line:
In our case, "realm" is not used / optional. We log in with NTLM through a username & password. When we pass an empty string or undef, we still get this message.
Also, the message is not really clear in it's wording ('probably', non-exclusive 'and') .