File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
java/com/redhat/labs/lodestar/service Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ private String migrateArtifactsToGitlab(Engagement engagement) {
247
247
List <Artifact > copies = new ArrayList <>(artifacts .size ());
248
248
artifacts .forEach (a -> {
249
249
Artifact copy = clone (a , Artifact .class );
250
- copy .setRegion (copy .getRegion ());
250
+ copy .setRegion (engagement .getRegion ());
251
251
if (copy .getCreated () == null ) {
252
252
copy .setCreated (engagement .getEndDate ());
253
253
}
@@ -257,6 +257,7 @@ private String migrateArtifactsToGitlab(Engagement engagement) {
257
257
}
258
258
copies .add (copy );
259
259
});
260
+
260
261
return json .toJson (copies );
261
262
}
262
263
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ quarkus.log.console.json=false
13
13
%test.quarkus.log.console.json =false
14
14
15
15
# Quarkus build properties
16
- quarkus.package.uber-jar = true
16
+ quarkus.package.type = uber-jar
17
17
18
18
# Quarkus HTTP properties
19
19
quarkus.http.cors =true
You can’t perform that action at this time.
0 commit comments