Skip to content

Commit

Permalink
fixed PUT dnsssec_enabled boolean response
Browse files Browse the repository at this point in the history
  • Loading branch information
dewrich authored and mitchell852 committed Nov 4, 2016
1 parent 023c5f1 commit ef93462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion traffic_ops/app/lib/API/Cdn.pm
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ sub update {
my $response;
$response->{id} = $rs->id;
$response->{name} = $rs->name;
$response->{dnssecEnabled} = $rs->dnssec_enabled;
$response->{dnssecEnabled} = \$rs->dnssec_enabled;
&log( $self, "Updated CDN name '" . $rs->name . "' for id: " . $rs->id, "APICHANGE" );
return $self->success( $response, "CDN update was successful." );
}
Expand Down

0 comments on commit ef93462

Please sign in to comment.