Github user jpeach commented on a diff in the pull request:
https://github.com/apache/trafficserver/pull/971#discussion_r78089641
--- Diff: lib/records/I_RecCore.h ---
@@ -168,11 +169,15 @@ int RecGetRecordBool(const char *name, RecBool
*rec_byte, bool lock = true);
//------------------------------------------------------------------------
// Record Attributes Reading
//------------------------------------------------------------------------
+// Values with names that have this prefix are exempted from being
considered "unrecognized".
+const char REC_PLUGIN_CONFIG_NAME_PREFIX[] = "proxy.config.plugin.";
+static const size_t REC_PLUGIN_CONFIG_NAME_PREFIX_LEN =
sizeof(REC_PLUGIN_CONFIG_NAME_PREFIX)-1;
--- End diff --
I don't think this is necessary now that you are checking whether the
record is registered?
---
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.
---