File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ class RPClient {
196196 const tempId = this . getUniqId ( ) ;
197197
198198 if ( launchDataRQ . id ) {
199+ this . logDebug ( `Use existing launch with tempId ${ tempId } ` , launchDataRQ ) ;
199200 this . map [ tempId ] = this . getNewItemObj ( ( resolve ) => resolve ( launchDataRQ ) ) ;
200201 this . map [ tempId ] . realId = launchDataRQ . id ;
201202 this . launchUuid = launchDataRQ . id ;
@@ -213,7 +214,7 @@ class RPClient {
213214
214215 this . map [ tempId ] = this . getNewItemObj ( ( resolve , reject ) => {
215216 const url = 'launch' ;
216- this . logDebug ( `Start launch with tempId ${ tempId } ` , launchDataRQ ) ;
217+ this . logDebug ( `Start launch with tempId ${ tempId } ` , launchData ) ;
217218 this . restClient . create ( url , launchData ) . then (
218219 ( response ) => {
219220 this . map [ tempId ] . realId = response . id ;
You can’t perform that action at this time.
0 commit comments