This is an automated email from the ASF dual-hosted git repository.

iilyak pushed a commit to branch couch-stats-resource-tracker-v3-rebase-http-2
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit aa1e88e223f8a36ac6502084a4c2786f466c5070
Author: ILYA Khlopotov <[email protected]>
AuthorDate: Wed Jul 2 09:25:38 2025 -0700

    fixup! Fix encoding of JSON reply
---
 src/couch_stats/src/csrt_httpd.erl | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/couch_stats/src/csrt_httpd.erl 
b/src/couch_stats/src/csrt_httpd.erl
index 562e1a450..a14d219fa 100644
--- a/src/couch_stats/src/csrt_httpd.erl
+++ b/src/couch_stats/src/csrt_httpd.erl
@@ -78,7 +78,6 @@ handle_sort_by(Req, MatcherName, SortBy) ->
     CounterKey = couch_util:get_value(<<"counter_key">>, SortBy),
     case csrt:query_sort_by(MatcherName, AggregationKeys, CounterKey) of
         {ok, Map} ->
-            io:format(user, "Map ~p~n", [Map]),
             send_json(Req, aggregation_result_to_json(AggregationKeys, Map));
         {error, Reason} ->
             send_error(Req, Reason)

Reply via email to