Github user dneuman64 commented on a diff in the pull request:
https://github.com/apache/incubator-trafficcontrol/pull/127#discussion_r91398038
--- Diff: traffic_ops/app/lib/API/Deliveryservice.pm ---
@@ -295,7 +295,7 @@ sub update {
my @response;
push(
@response, {
- "active" => \$rs->active,
+ "active" => $rs->active,
--- End diff --
This is on the update method. When the result set was being returned after
the update, the active flag (and the others with the `\` removed) were not
being rendered correctly. Removing the `\` caused the field to be returned
correctly.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---