Open azambranogalbis opened 2 months ago
The changes introduce a new entry to the .gitignore
file to exclude the .scannerwork/
directory from version control. Additionally, the startSendingMessage
function in blockwise.go
has been modified to remove the check for "observe" responses, allowing all messages to proceed through the logic without early termination. This adjustment impacts message handling in scenarios involving observed resources.
File | Change Summary |
---|---|
.gitignore | Added .scannerwork/ to ignore list |
net/blockwise/blockwise.go | Modified startSendingMessage to remove observe response check |
Objective | Addressed | Explanation |
---|---|---|
Combination of blockwise and observe not working (#575) | ✅ |
🐰 Hopping through the code,
Ignoring files that slow the load.
Messages now flow without a care,
Observations handled with flair!
A joyful leap in logic's dance,
In the land of blocks, we take a chance! 🌼
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?
This PR fixes https://github.com/plgd-dev/go-coap/issues/575
Summary by CodeRabbit
Chores
.gitignore
file to exclude the.scannerwork/
directory, improving repository management by preventing unnecessary files from being tracked.Bug Fixes
BlockWise
component, allowing all messages to be processed regardless of their response type, which may enhance overall message management.