[JIRA] (JENKINS-42781) Load more than 100 steps in a node

2019-10-09 Thread abram.hemph...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Abram Hemphill commented on  JENKINS-42781  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Load more than 100 steps in a node   
 

  
 
 
 
 

 
 Is there any update on this?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.6#713006-sha1:cc4451f)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.179775.1489535098000.3983.1570644900488%40Atlassian.JIRA.


[JIRA] (JENKINS-42781) Load more than 100 steps in a node

2018-04-23 Thread justbimle...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bimlendu Mishra edited a comment on  JENKINS-42781  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Load more than 100 steps in a node   
 

  
 
 
 
 

 
 Is this something still looked into?I see the nodes api being called with a limit parameter of 1, the steps api  does not have such parameter, and it maxes out at 100.\{code: title=test100StepsLimit.groovy|borderStyle=solid java } pipeline \{  agent \{    label any  }  stages \{    stage('200 Steps')\{      steps \{        script \{          def range = 1..200          range.each \{ n ->           println n        }      }    }  } } } \{code}Call for nodes API: [http://localhost:8080/blue/rest/organizations/jenkins/pipelines/test100Limit/runs/4/nodes/?limit=1]Call for steps API: [http://localhost:8080/blue/rest/organizations/jenkins/pipelines/test100Limit/runs/4/nodes/6/steps/]Is there a way I can send the limits parameter to the steps API too. Or, I need to change here: [https://github.com/jenkinsci/blueocean-plugin/blob/master/blueocean-dashboard/src/main/js/components/karaoke/services/Augmenter.js#L83]Also is there a reason why this limit is not being passed to steps/ endpoint ?   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-42781) Load more than 100 steps in a node

2018-04-23 Thread justbimle...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bimlendu Mishra edited a comment on  JENKINS-42781  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Load more than 100 steps in a node   
 

  
 
 
 
 

 
 Is this something still looked into?I see the nodes api being called with a limit parameter of 1, the steps api does not have such parameter, and it maxes out at 100.\{code:title=test100StepsLimit.groovy|borderStyle=solid}pipeline \{    agent \{      label any    }      stages \{      stage('200 Steps')\{        steps \{          script \{            def range = 1..200            range.each \{ n ->             println n          }        }      }    } }}\{code}Call for nodes API:  [  http://localhost:8080/blue/rest/organizations/jenkins/pipelines/test100Limit/runs/4/nodes/?limit=1 ] Call for steps API:  [  http://localhost:8080/blue/rest/organizations/jenkins/pipelines/test100Limit/runs/4/nodes/6/steps/ ] Is there a way I can send the limits parameter to the steps API too. Or, I need to change here:  [  https://github.com/jenkinsci/blueocean-plugin/blob/master/blueocean-dashboard/src/main/js/components/karaoke/services/Augmenter.js#L83 ] Also is there a reason why this limit is not being passed to steps/ endpoint ?   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-42781) Load more than 100 steps in a node

2018-04-23 Thread justbimle...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Bimlendu Mishra commented on  JENKINS-42781  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Load more than 100 steps in a node   
 

  
 
 
 
 

 
 Is this something still looked into? I see the nodes api being called with a limit parameter of 1, the steps api  does not have such parameter, and it maxes out at 100. {code:title=test100StepsLimit.groovy|borderStyle=solid} pipeline { agent { label any }  stages { stage('200 Steps'){ steps { script { def range = 1..200 range.each { n ->  println n } } } } } } {code} Call for nodes API: http://localhost:8080/blue/rest/organizations/jenkins/pipelines/test100Limit/runs/4/nodes/?limit=1 Call for steps API: http://localhost:8080/blue/rest/organizations/jenkins/pipelines/test100Limit/runs/4/nodes/6/steps/ Is there a way I can send the limits parameter to the steps API too. Or, I need to change here: https://github.com/jenkinsci/blueocean-plugin/blob/master/blueocean-dashboard/src/main/js/components/karaoke/services/Augmenter.js#L83 Also is there a reason why this limit is not being passed to steps/ endpoint ?    
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-42781) Load more than 100 steps in a node

2017-03-27 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42781  
 
 
  Load more than 100 steps in a node   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Sprint: 
 Blue Ocean 1.0-rc3 , Blue Ocean 1.0-rc4  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-42781) Load more than 100 steps in a node

2017-03-15 Thread tscher...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Thorsten Scherler updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42781  
 
 
  Load more than 100 steps in a node   
 

  
 
 
 
 

 
Change By: 
 Thorsten Scherler  
 

  
 
 
 
 

 
 The api to load steps is paginated. Currently only the first page is loaded. When a user clicks on a node, it should load and display the steps using this pagination (ie keep loading and appending until there are no more).  This should be able to generate loads of steps I think:  Using the following pipelineScript and [https://github.com/scherler/blueocean-shared-library/commit/43d5620a42d7795b43bc829d694c3cae2a3c3919]{code:java}@Library('test-writer') import writeTestimport longLognode {stage 'fin'def xml = writeTest()sh "echo '$xml' > TEST-some.xml"step([$class: 'JUnitResultArchiver', testResults: 'TEST-*.xml'])sh 'echo `date` fin;sleep 3; echo `date` fin;'sh 'echo yeah > foo.txt'archiveArtifacts 'foo.txt'longLog(1 , false )stage 'NoSteps'}{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 

[JIRA] (JENKINS-42781) Load more than 100 steps in a node

2017-03-14 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42781  
 
 
  Load more than 100 steps in a node   
 

  
 
 
 
 

 
Change By: 
 Michael Neale  
 

  
 
 
 
 

 
 The api to load steps is paginated. Currently only the first page is loaded.   When a user clicks on a node, it should load and display the steps using this pagination (ie keep loading and appending until there are no more).   This should be able to generate loads of steps I think:  Using the following pipelineScript and [https://github.com/scherler/blueocean-shared-library/commit/43d5620a42d7795b43bc829d694c3cae2a3c3919]{code:java}@Library('test-writer') import writeTestimport longLognode {stage 'fin'def xml = writeTest()sh "echo '$xml' > TEST-some.xml"step([$class: 'JUnitResultArchiver', testResults: 'TEST-*.xml'])sh 'echo `date` fin;sleep 3; echo `date` fin;'sh 'echo yeah > foo.txt'archiveArtifacts 'foo.txt'longLog(1)stage 'NoSteps'}{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e)  
 
 

 
   
 

  
 

  
 

   





-- 
You received 

[JIRA] (JENKINS-42781) Load more than 100 steps in a node

2017-03-14 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-42781  
 
 
  Load more than 100 steps in a node   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Thorsten Scherler  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2017/Mar/14 11:44 PM  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Michael Neale  
 

  
 
 
 
 

 
 The api to load steps is paginated. Currently only the first page is loaded.  When a user clicks on a node, it should load and display the steps using this pagination (ie keep loading and appending until there are no more).   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This