eclipse-kura / kura

Eclipse Kura™ is a versatile framework to supercharge your edge devices, streamlining the process of configuring your gateway, connecting sensors, and IoT devices to seamlessly collect, process, and send data to the cloud.
https://eclipse.dev/kura/
Eclipse Public License 2.0
498 stars 305 forks source link

fix: Fixed console not immediately applying SslManagerService target … #5272

Closed nicolatimeus closed 3 months ago

nicolatimeus commented 3 months ago

…update

Note: We are using the Conventional Commits convention for our pull request titles. Please take a look at the PR title format document for the supported types and scopes.

Brief description of the PR. [e.g. Added null check on object to avoid NullPointerException]

Fixes web console not picking up SslManagerService target update until framework restart or next configuration update

github-actions[bot] commented 3 months ago

The backport to release-5.5.0 failed:

The process '/usr/bin/git' failed with exit code 1

To backport manually, run these commands in your terminal:

# Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-release-5.5.0 release-5.5.0
# Navigate to the new working tree
cd .worktrees/backport-release-5.5.0
# Create a new branch
git switch --create backport-5272-to-release-5.5.0
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick -x --mainline 1 f000a0be591f6a81a525f0e0feafb9ef50c0d770
# Push it to GitHub
git push --set-upstream origin backport-5272-to-release-5.5.0
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-release-5.5.0

Then, create a pull request where the base branch is release-5.5.0 and the compare/head branch is backport-5272-to-release-5.5.0.