Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cass: support newer HTTP::Tiny, Net::DAVTalk, Mail::JMAPTalk #5229

Merged
merged 3 commits into from
Feb 2, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
TestCase: prefer https over http if configured
  • Loading branch information
elliefm committed Jan 30, 2025
commit 45064c328b48bb91ae09ddf410343f6fd2f31ee5
4 changes: 2 additions & 2 deletions cassandane/Cassandane/Cyrus/TestCase.pm
Original file line number Diff line number Diff line change
Expand Up @@ -796,8 +796,8 @@ sub _setup_http_service_objects
my ($self) = @_;

# nothing to do if no http or https service
my $service = $self->{instance}->get_service("http");
$service ||= $self->{instance}->get_service("https");
my $service = $self->{instance}->get_service("https");
$service ||= $self->{instance}->get_service("http");
return if !$service;

my %common_args = (
Expand Down