Skip to content

Commit a25db95

Browse files
committed
ensure stdout output
1 parent acd7a05 commit a25db95

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/docker/include/entrypoint.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function importTrustStores() {
3131
-trustcacerts \
3232
-keystore "${SSL_TRUSTSTORE:-$CONF_DIR/truststore.p12}" \
3333
-file "$cert"\
34-
-storepass "$SSL_TRUSTSTORE_PASS" || true
34+
-storepass "$SSL_TRUSTSTORE_PASS" 2>&1 || true
3535
done
3636

3737
FLAGS+=(

src/main/java/io/cryostat/recordings/RecordingHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@ public ArchivedRecording archiveRecording(ActiveRecording recording, String save
834834
builder = builder.tagging(createActiveRecordingTagging(recording));
835835
break;
836836
case METADATA:
837-
// TODO
837+
builder = builder.metadata(createActiveRecordingMetadata(recording).labels());
838838
break;
839839
case BUCKET:
840840
metadataService

0 commit comments

Comments
 (0)