Skip to content

Commit 380a53c

Browse files
author
Chuck Rolke
committed
DISPATCH-2003: Memory usage as uint32 underreports larger sizes
1 parent 499be40 commit 380a53c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/router_core/agent_router.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ static void qdr_agent_write_column_CT(qd_composed_field_t *body, int col, qdr_co
246246
break;
247247

248248
case QDR_ROUTER_MEMORY_USAGE: {
249-
uint32_t size = qd_router_memory_usage();
249+
uint64_t size = qd_router_memory_usage();
250250
if (size)
251251
qd_compose_insert_ulong(body, size);
252252
else // memory usage not available

0 commit comments

Comments
 (0)