We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MacOS
method
public ConsoleLog getConsoleOutputText(int bufferOffset) throws IOException {
public ConsoleLog getConsoleOutputText(int bufferOffset) throws IOException { List formData = new ArrayList(); formData.add(new BasicNameValuePair("start", Integer.toString(bufferOffset))); String path = this.getUrl() + "logText/progressiveText"; HttpResponse httpResponse = this.client.post_form_with_result(path, formData, false);
--> this.client.post_form_with_result(path, formData, true);
Default false will result in 403
It should be set as a parameter that can be passed in
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Jenkins and plugins versions report
What Operating System are you using (both controller, and any agents involved in the problem)?
MacOS
Reproduction steps
method
public ConsoleLog getConsoleOutputText(int bufferOffset) throws IOException {
Expected Results
public ConsoleLog getConsoleOutputText(int bufferOffset) throws IOException {
List formData = new ArrayList();
formData.add(new BasicNameValuePair("start", Integer.toString(bufferOffset)));
String path = this.getUrl() + "logText/progressiveText";
HttpResponse httpResponse = this.client.post_form_with_result(path, formData, false);
--> this.client.post_form_with_result(path, formData, true);
Actual Results
Default false will result in 403
Anything else?
It should be set as a parameter that can be passed in
Are you interested in contributing a fix?
No response
The text was updated successfully, but these errors were encountered: