@@ -23,26 +23,26 @@ export class StateIssues extends Issues {
2323
2424 const runnerJobsListJobsPromise = this . api . getRunnerJobsListJobs ( [ "state.apply" , "state.highstate" , "state.sls_id" ] ) ;
2525
26- wheelKeyListAllPromise . then ( ( pWheelKeyListAllData ) => {
27- runnerJobsListJobsPromise . then ( ( pRunnerJobsListJobsData ) => {
26+ wheelKeyListAllPromise . then ( ( ok_WheelKeyListAll ) => {
27+ runnerJobsListJobsPromise . then ( ( ok_RunnerJobsListJobs ) => {
2828 Issues . removeCategory ( pPanel , "state" ) ;
29- this . _handleLowstateRunnerJobsListJobs ( pPanel , pRunnerJobsListJobsData , pWheelKeyListAllData , msg ) ;
29+ this . _handleLowstateRunnerJobsListJobs ( pPanel , ok_RunnerJobsListJobs , ok_WheelKeyListAll , msg ) ;
3030 return true ;
31- } , ( pRunnerJobsListJobsMsg ) => {
31+ } , ( error_RunnerJobsListJobs ) => {
3232 Issues . removeCategory ( pPanel , "state" ) ;
3333 const tr = Issues . addIssue ( pPanel , "state" , "retrieving" ) ;
3434 Issues . addIssueMsg ( tr , "Could not retrieve list of jobs" ) ;
35- Issues . addIssueErr ( tr , pRunnerJobsListJobsMsg ) ;
35+ Issues . addIssueErr ( tr , error_RunnerJobsListJobs ) ;
3636 Issues . readyCategory ( pPanel , msg ) ;
3737 return false ;
3838 } ) ;
3939 return true ;
40- } , ( pWheelKeyListAllMsg ) => {
40+ } , ( error_WheelKeyListAll ) => {
4141 Utils . ignorePromise ( runnerJobsListJobsPromise ) ;
4242 Issues . removeCategory ( pPanel , "state" ) ;
4343 const tr = Issues . addIssue ( pPanel , "state" , "retrieving" ) ;
4444 Issues . addIssueMsg ( tr , "Could not retrieve list of keys" ) ;
45- Issues . addIssueErr ( tr , pWheelKeyListAllMsg ) ;
45+ Issues . addIssueErr ( tr , error_WheelKeyListAll ) ;
4646 Issues . readyCategory ( pPanel , msg ) ;
4747 return false ;
4848 } ) ;
@@ -86,13 +86,13 @@ export class StateIssues extends Issues {
8686 loopItem ( pJob ) {
8787 const runnerJobsListJobPromise = this . api . getRunnerJobsListJob ( pJob . id ) ;
8888
89- return runnerJobsListJobPromise . then ( ( pRunnerJobsListJobData ) => {
90- StateIssues . _handleJobRunnerJobsListJob ( this . panel , pRunnerJobsListJobData , this . keys ) ;
89+ return runnerJobsListJobPromise . then ( ( ok_RunnerJobsListJob ) => {
90+ StateIssues . _handleJobRunnerJobsListJob ( this . panel , ok_RunnerJobsListJob , this . keys ) ;
9191 return true ;
92- } , ( pRunnerJobsListJobsMsg ) => {
92+ } , ( error_RunnerJobsListJobs ) => {
9393 const tr = Issues . addIssue ( this . panel , "state" , "retrieving" ) ;
9494 Issues . addIssueMsg ( tr , "Could not retrieve details of job " + pJob . id ) ;
95- Issues . addIssueErr ( tr , pRunnerJobsListJobsMsg ) ;
95+ Issues . addIssueErr ( tr , error_RunnerJobsListJobs ) ;
9696 // the remaining jobs will fail just the same
9797 return false ;
9898 } ) ;
0 commit comments