Skip to content

Commit 15bb44b

Browse files
committed
Restore another DevServiceDescriptionBuildItem constructor
This is used in the Wiremock extension in the quarkiverse - Follows up on: #48849
1 parent ec5d2bc commit 15bb44b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

core/deployment/src/main/java/io/quarkus/deployment/dev/devservices/DevServiceDescriptionBuildItem.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ public DevServiceDescriptionBuildItem(String name, Map<String, String> configs)
1717
this(name, null, (Supplier<ContainerInfo>) null, configs);
1818
}
1919

20+
public DevServiceDescriptionBuildItem(String name, ContainerInfo containerInfo,
21+
Map<String, String> configs) {
22+
this(name, null, () -> containerInfo, configs);
23+
}
24+
2025
public DevServiceDescriptionBuildItem(String name, String description, ContainerInfo containerInfo,
2126
Map<String, String> configs) {
2227
this(name, description, () -> containerInfo, configs);

0 commit comments

Comments
 (0)