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
{{ message }}
This repository was archived by the owner on May 17, 2024. It is now read-only.
i actually have overridden the __ua sub because of this. it needs a Mojo::UserAgent::CookieJar->new. here is what the changed sub i'm using looks like:
sub PubNub::PubSub::__ua {
my $self = shift;
return $self->{ua} if exists $self->{ua};
my $ua = Mojo::UserAgent->new;
$ua->max_redirects(3);
$ua->inactivity_timeout($self->{timeout});
$ua->proxy->detect; # env proxy
$ua->cookie_jar(Mojo::UserAgent::CookieJar->new);
$ua->max_connections(100);
$self->{ua} = $ua;
return $ua;
}
Hi,
just trying to use your package, but getting following problem:
Ubuntu 14.04
Mojolicous: 7.40
PubNub::PubSub: 1.0.1 (github version)
Any idea why this is happening?
Thanks
bert
The text was updated successfully, but these errors were encountered: