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
-[5XX](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/500) (Internal Server Errors)
134
96
135
97
Use the `max_retries` request option to configure this behavior.
136
98
137
99
```python
138
-
client.animate(..., {
100
+
client.bulk_runner(..., {
139
101
"max_retries": 1
140
102
})
141
103
```
@@ -155,7 +117,7 @@ client = Gooey(
155
117
156
118
157
119
# Override timeout for a specific method
158
-
client.animate(..., {
120
+
client.bulk_runner(..., {
159
121
"timeout_in_seconds": 1
160
122
})
161
123
```
@@ -180,7 +142,9 @@ client = Gooey(
180
142
## Contributing
181
143
182
144
While we value open-source contributions to this SDK, this library is generated programmatically.
183
-
184
-
Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!
145
+
Additions made directly to this library would have to be moved over to our generation code,
146
+
otherwise they would be overwritten upon the next generated release. Feel free to open a PR as
147
+
a proof of concept, but know that we will not be able to merge it as-is. We suggest opening
148
+
an issue first to discuss with us!
185
149
186
150
On the other hand, contributions to the README are always very welcome!
0 commit comments