[
https://issues.apache.org/jira/browse/TS-5073?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15716676#comment-15716676
]
Leif Hedstrom commented on TS-5073:
-----------------------------------
I see one place where this is used (in non-test code):
{code}
diff --git a/iocore/eventsystem/EventSystem.cc
b/iocore/eventsystem/EventSystem.cc
index 1cb3613..1c781a4 100644
--- a/iocore/eventsystem/EventSystem.cc
+++ b/iocore/eventsystem/EventSystem.cc
@@ -54,8 +54,9 @@ ink_event_system_init(ModuleVersion v)
}
#ifdef MADV_DONTDUMP // This should only exist on Linux 3.4 and higher.
- RecBool dont_dump_enabled = true;
- RecGetRecordBool("proxy.config.allocator.dontdump_iobuffers",
&dont_dump_enabled, false);
+ int dont_dump_enabled = 1;
+
+ REC_ReadConfigInteger(dont_dump_enabled,
"proxy.config.allocator.dontdump_iobuffers");
if (dont_dump_enabled) {
iobuffer_advice |= MADV_DONTDUMP;
{code}
> Remove RecLinkConfigBool and RecGetRecordBool
> ---------------------------------------------
>
> Key: TS-5073
> URL: https://issues.apache.org/jira/browse/TS-5073
> Project: Traffic Server
> Issue Type: Improvement
> Components: Configuration
> Reporter: Leif Hedstrom
> Assignee: Leif Hedstrom
> Fix For: 7.1.0
>
>
> These seems to generally not be used, and we really don't have a "bool" type
> in configurations (almost everywhere, do we treat and read these as ints).
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)