Skip to content

Commit b542d7d

Browse files
fix: remove retry for status 500
Co-authored-by: Richard Bell <418101+rbell517@users.noreply.github.com>
1 parent fbcd26c commit b542d7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nisystemlink/clients/dataframe/_data_frame_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020

2121
@retry(
22-
when=retry.when.status([429, 500, 502, 503, 504]),
22+
when=retry.when.status([429, 502, 503, 504]),
2323
stop=retry.stop.after_attempt(5),
2424
on_exception=retry.CONNECTION_ERROR,
2525
)

0 commit comments

Comments
 (0)