This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 48c604c5bd fix: Add missing service id to adapter description (#4283)
48c604c5bd is described below

commit 48c604c5bd4dab5eee0395fbba33638e52b7b3b0
Author: Sven Oehler <[email protected]>
AuthorDate: Mon Mar 23 15:41:30 2026 +0100

    fix: Add missing service id to adapter description (#4283)
---
 .../org/apache/streampipes/model/connect/adapter/AdapterDescription.java | 1 +
 1 file changed, 1 insertion(+)

diff --git 
a/streampipes-model/src/main/java/org/apache/streampipes/model/connect/adapter/AdapterDescription.java
 
b/streampipes-model/src/main/java/org/apache/streampipes/model/connect/adapter/AdapterDescription.java
index d35a8ee840..480f48d5dd 100644
--- 
a/streampipes-model/src/main/java/org/apache/streampipes/model/connect/adapter/AdapterDescription.java
+++ 
b/streampipes-model/src/main/java/org/apache/streampipes/model/connect/adapter/AdapterDescription.java
@@ -95,6 +95,7 @@ public class AdapterDescription extends 
VersionedNamedStreamPipesEntity {
     this.icon = other.getIcon();
     this.createdAt = other.getCreatedAt();
     this.selectedEndpointUrl = other.getSelectedEndpointUrl();
+    this.selectedServiceId = other.getSelectedServiceId();
     this.correspondingServiceGroup = other.getCorrespondingServiceGroup();
     this.correspondingDataStreamElementId = 
other.getCorrespondingDataStreamElementId();
     if (other.getEventGrounding() != null) {

Reply via email to