You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2021/06/22 10:21:44 UTC

[GitHub] [mynewt-newtmgr] ubicore opened a new issue #186: ProcessMissedChunks() does not process chunck with IMAGE_UPLOAD_CHUNK_MISSED_WM status

ubicore opened a new issue #186:
URL: https://github.com/apache/mynewt-newtmgr/issues/186


   
   If c is == to IMAGE_UPLOAD_CHUNK_MISSED_WM, chunck is never retransmitted ?
   https://github.com/apache/mynewt-newtmgr/blob/master/nmxact/xact/image.go#L249
   Maybe the test : 
   		if c < IMAGE_UPLOAD_CHUNK_MISSED_WM {
   should be : 
   		if c <= IMAGE_UPLOAD_CHUNK_MISSED_WM {
   or 
   		if c < 0 {
    
   ?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org