Skip to content

Commit 3b2441d

Browse files
committed
Fixed upload
1 parent 00896f4 commit 3b2441d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/msgraph_core/tasks/large_file_upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ async def next_chunk(self, file: BytesIO, range_start: int = 0, range_end: int =
182182
end = min(end, self.max_chunk_size + start)
183183
chunk_data = file.read(end - start + 1)
184184
info.headers = HeadersCollection()
185-
access_token = "<place_holder_pending CAE fix>"
185+
access_token = "<pending auth fix>"
186186

187187
info.headers.try_add('Content-Range', f'bytes {start}-{end}/{self.file_size}')
188188
info.headers.try_add('Content-Length', str(len(chunk_data)))

0 commit comments

Comments
 (0)