Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
### Changed
- Launch start debug logging improved.

## [5.5.6] - 2025-11-18
### Security
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.5.6
5.5.7-SNAPSHOT
3 changes: 2 additions & 1 deletion lib/report-portal-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ class RPClient {
const tempId = this.getUniqId();

if (launchDataRQ.id) {
this.logDebug(`Use existing launch with tempId ${tempId}`, launchDataRQ);
this.map[tempId] = this.getNewItemObj((resolve) => resolve(launchDataRQ));
this.map[tempId].realId = launchDataRQ.id;
this.launchUuid = launchDataRQ.id;
Expand All @@ -213,7 +214,7 @@ class RPClient {

this.map[tempId] = this.getNewItemObj((resolve, reject) => {
const url = 'launch';
this.logDebug(`Start launch with tempId ${tempId}`, launchDataRQ);
this.logDebug(`Start launch with tempId ${tempId}`, launchData);
this.restClient.create(url, launchData).then(
(response) => {
this.map[tempId].realId = response.id;
Expand Down
Loading