Skip to content

Commit 32d6eea

Browse files
authored
Merge pull request #662 from mtgerb/dev
Fix BaseCollectionRequest setMaxRetries method
2 parents 9472f99 + 0909802 commit 32d6eea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/microsoft/graph/http/BaseCollectionRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ public IShouldRetry getShouldRetry() {
271271
* @param maxRetries Max retries for a request
272272
*/
273273
public void setMaxRetries(int maxRetries) {
274-
baseRequest.setMaxRedirects(maxRetries);
274+
baseRequest.setMaxRetries(maxRetries);
275275
}
276276

277277
/**

0 commit comments

Comments
 (0)