Merged
Size
S
Change Breakdown
Bug Fix85%
Docs10%
Style5%
#27703fix(AWS ELB Node): Fix spelling typo 'sucess' → 'success' in RemoveListenerCertificates

AWS ELB node response spelling corrected

The AWS ELB node was returning a misspelled 'sucess: true' in its RemoveListenerCertificates operation—a tiny typo with real implications for any automation downstream.

The AWS ELB node in the nodes-base package had a spelling problem hiding in plain sight: the RemoveListenerCertificates operation was returning { "sucess": true } instead of { "success": true }. It was a pre-existing issue documented as a TODO in the test suite.

This fix corrects that single-character typo. The node now returns a properly spelled success key, which matters for anyone building automations that depend on this response. Downstream workflows parsing the ELB node's output will no longer receive a misspelled property name.

The change touches three files: the node implementation where the response object lives, the test workflow file that validates the expected output, and the test README that documented the issue. All three have been updated in sync so the test suite passes with the corrected spelling.

View Original GitHub Description

Summary

This PR fixes a simple spelling typo in the AWS ELB node where 'sucess' was misspelled instead of 'success' in the RemoveListenerCertificates operation response.

Problem

The AWS ELB node was returning { "sucess": true } instead of the correctly spelled { "success": true } for the RemoveListenerCertificates operation. This issue was documented as a known TODO in the test README file.

Changes Made

Fixed the typo: Changed 'sucess' to 'success' in AwsElb.node.ts line 297
Updated test data: Corrected the expected response in remove-listener-certificate.workflow.json
Updated documentation: Removed the TODO item from the test README and marked the issue as resolved

Files Modified

  • packages/nodes-base/nodes/Aws/ELB/AwsElb.node.ts - Fixed the typo in the response object
  • packages/nodes-base/nodes/Aws/ELB/test/remove-listener-certificate.workflow.json - Updated test data
  • packages/nodes-base/nodes/Aws/ELB/test/README.md - Updated documentation

Type of Change

  • ✅ Bug fix (non-breaking change that fixes an issue)
  • ✅ Documentation update

Testing

The corresponding test file has been updated to expect the correct spelling. This ensures that:

  • The node now returns consistent, properly spelled responses
  • Tests validate the correct behavior
  • No breaking changes for users (this improves the API response quality)

Notes

This was a pre-existing, documented issue in the codebase marked as a TODO in the test documentation. The fix is minimal and improves the overall quality of the node's API responses.

© 2026 · via Gitpulse