Skip to content

Commit e1fc81f

Browse files
committed
- fixes delay default value assignment
1 parent 18c311a commit e1fc81f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/microsoft/graph/requests/extensions/ChunkedUploadRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class ChunkedUploadRequest {
3131
/**
3232
* The seconds for retry delay.
3333
*/
34-
private static final long RETRY_DELAY = 2 * 1000;
34+
private static final long RETRY_DELAY = 2000L; // 2 seconds
3535

3636
/**
3737
* The chunk data sent to the server.

0 commit comments

Comments
 (0)