fix(iot-hub-device-update): refresh omnect_1.4.0.patch to fork tip - #681
Merged
JanZachmann merged 1 commit intoAug 6, 2026
Conversation
Summary Regenerate `omnect_1.4.0.patch` as `git diff 1.4.0..omnect/omnect_1.4.0` at bb060d21 so the patch matches every commit currently on the omnect fork branch. Reason The new hunks come from two places: - omnect/iot-hub-device-update#56 (bb060d21): `sd_notify(EXTEND_TIMEOUT_USEC=…)` from `Connection_Maintenance()` right after it schedules the next authentication attempt, plus a bounded grace on the first `DoWork` tick. The `activating (start)` deadline systemd uses to kill the unit now follows the SDK's retry cadence, so a first-boot with the hub unreachable does not crash-loop the agent to `NRestarts=3` within the default 90s TimeoutStartSec. - omnect/iot-hub-device-update#54 (e2315265, merged earlier): a `DIAGNOSTICS_DEVICENAMES_H` header-guard typo fix in `src/diagnostics_component/diagnostics_devicename/inc/diagnostics_devicename.h`, and the removal of `#define _XOPEN_SOURCE 700` in `src/utils/apiproto_utils/inc/aduc/apiproto.h`. Both had been on the fork branch for two weeks; the patch here had drifted away from the branch's actual state and picks them up on the same regenerate. Signed-off-by: Jan Zachmann 50990105+JanZachmann@users.noreply.github.com
HarryWaschkeit
approved these changes
Aug 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Update
omnect_1.4.0.patchto omnect/iot-hub-device-update#56 (bb060d21):sd_notify(EXTEND_TIMEOUT_USEC=…)fromConnection_Maintenance()right after it schedules the next authentication attempt, plus a bounded grace on the firstDoWorktick. Theactivating (start)deadline systemd uses to kill the unit now follows the SDK's retry cadence, so a first-boot with the hub unreachable does not crash-loop the agent anymore within the default 90sTimeoutStartSec.