Skip to content

Commit cb095b0

Browse files
authored
chore: Replace Node ID with label in dispatch errors (baserow#5290)
* Update label for get row * Add changelog * Remove node ID from error message, since it is scoped to the node history entry.
1 parent 6b4696e commit cb095b0

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

backend/src/baserow/contrib/automation/nodes/handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ def dispatch_node(
483483
try:
484484
dispatch_result = node_type.dispatch(node, dispatch_context)
485485
except ServiceImproperlyConfiguredDispatchException as e:
486-
error = f"The node {node.id} is misconfigured and cannot be dispatched. {str(e)}"
486+
error = f"The node is misconfigured and cannot be dispatched. {str(e)}"
487487
self._handle_workflow_error(node_history, iteration_path, error)
488488
self._handle_simulation_notify(simulate_until_node, node)
489489
return None
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "refactor",
3+
"message": "Remove Node ID in dispatch errors since the error is scoped to the node history.",
4+
"issue_origin": "github",
5+
"issue_number": 4800,
6+
"domain": "automation",
7+
"bullet_points": [],
8+
"created_at": "2026-05-01"
9+
}

web-frontend/modules/integrations/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"slackBotNoToken": "Slack Bot - Not configured"
2424
},
2525
"serviceType": {
26-
"localBaserowGetRow": "Get single row",
26+
"localBaserowGetRow": "Get a single row",
2727
"localBaserowGetRowDescription": "Read a single row from a Baserow table.",
2828
"localBaserowListRows": "List multiple rows",
2929
"localBaserowListRowsDescription": "Reads multiple rows from a Baserow table.",

0 commit comments

Comments
 (0)