From ce67f3bb247a863365979799741233589f50ad48 Mon Sep 17 00:00:00 2001 From: cgonzalez Date: Tue, 26 Oct 2021 13:02:54 +0100 Subject: [PATCH 1/2] Improve info for :update_user command --- app/commands/central_user_commands.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/commands/central_user_commands.rb b/app/commands/central_user_commands.rb index ec122cdb98..5bc89aa791 100644 --- a/app/commands/central_user_commands.rb +++ b/app/commands/central_user_commands.rb @@ -14,7 +14,12 @@ class CentralUserCommands def update_user(message) payload = message.payload Carto::Common::CurrentRequest.with_request_id(message.request_id) do - logger.info(message: 'Processing :update_user', class_name: self.class.name) + logger.info( + message: 'Processing :update_user', + remote_user_id: payload['remote_user_id'], + class_name: self.class.name + ) + user_id = payload.delete('remote_user_id') return unless user_id.present? && payload.any? From 09d45b624152edbbd901451b7a3842af5e3d04c0 Mon Sep 17 00:00:00 2001 From: cgonzalez Date: Tue, 26 Oct 2021 13:07:29 +0100 Subject: [PATCH 2/2] Update NEWS.md --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index ec18519ca2..1113bb6f1e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -22,6 +22,7 @@ Development - Add marginTop to Page when notification is displayed [#16355](https://github.com/CartoDB/cartodb/pull/16355) - Add "element" param to DO-Catalog entry function [#16343](https://github.com/CartoDB/cartodb/pull/16343) - Add new DO Catalog route for internal usage [#16342](https://github.com/CartoDB/cartodb/pull/16342) +- Improve info for :update_user command [#16363](https://github.com/CartoDB/cartodb/pull/16363) - Disable email validation in DO Premium Subscriptions [#16309](https://github.com/CartoDB/cartodb/pull/16309) - Hide sharing tab from viewer in on-premises [#16299](https://github.com/CartoDB/cartodb/pull/16299) - Remove all references to Spatial Data Catalog and Kepler GL maps in on-premises [#16293](https://github.com/CartoDB/cartodb/pull/16293)