Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion traffic_ops/app/lib/API/Iso.pm
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ sub generate_iso {
}

# slurp it in..
undef $/;
local $/;
$data = <$fh>;

close $fh;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ sub parse_retention_period_in_seconds {
my $self = shift;
my $retention_period = shift;

undef $/;
local $/;

my ( $hour, $minutes, $seconds ) = $retention_period =~ /(\d*)h(\d*)m(\d*)s/ms;

Expand Down
2 changes: 1 addition & 1 deletion traffic_ops/app/lib/UI/GenDbDump.pm
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ sub dbdump {
}

# slurp it in..
undef $/;
local $/;
my $data = <$fh>;


Expand Down