You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(nodes): move test path setup to conftest and document rate-limit opt-out
Move sys.path.insert for tool_http_request into conftest.py so all
node unit tests share a single path setup entry point. Document the
"all-or-nothing" opt-out behavior in services.json rate-limit field
descriptions (all three must be 0 to disable).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: nodes/src/nodes/tool_http_request/services.json
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -114,19 +114,19 @@
114
114
"http_request.rateLimitPerSecond": {
115
115
"type": "number",
116
116
"title": "Max requests per second",
117
-
"description": "Maximum number of HTTP requests allowed per second. Uses a token-bucket algorithm for smooth enforcement.",
117
+
"description": "Maximum number of HTTP requests allowed per second. Uses a token-bucket algorithm for smooth enforcement. Set to 0 to disable (all three rate-limit fields must be 0 to fully opt out).",
118
118
"default": 10
119
119
},
120
120
"http_request.rateLimitPerMinute": {
121
121
"type": "number",
122
122
"title": "Max requests per minute",
123
-
"description": "Maximum number of HTTP requests allowed per minute. Provides a broader throttle beyond the per-second limit.",
123
+
"description": "Maximum number of HTTP requests allowed per minute. Provides a broader throttle beyond the per-second limit. Set to 0 to disable (all three rate-limit fields must be 0 to fully opt out).",
124
124
"default": 100
125
125
},
126
126
"http_request.maxConcurrentRequests": {
127
127
"type": "number",
128
128
"title": "Max concurrent requests",
129
-
"description": "Maximum number of HTTP requests that can be in-flight simultaneously.",
129
+
"description": "Maximum number of HTTP requests that can be in-flight simultaneously. Set to 0 to disable (all three rate-limit fields must be 0 to fully opt out).",
0 commit comments