mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 15:05:44 +01:00
Revert debug output
This commit is contained in:
@@ -77,15 +77,10 @@ public class ScmRequests {
|
|||||||
* @return the response of the GET request using the given <code>url</code>
|
* @return the response of the GET request using the given <code>url</code>
|
||||||
*/
|
*/
|
||||||
private Response applyGETRequestWithQueryParams(String url, String params) {
|
private Response applyGETRequestWithQueryParams(String url, String params) {
|
||||||
try {
|
|
||||||
return RestAssured.given()
|
return RestAssured.given()
|
||||||
.auth().preemptive().basic(username, password)
|
.auth().preemptive().basic(username, password)
|
||||||
.when()
|
.when()
|
||||||
.get(url + params);
|
.get(url + params);
|
||||||
} catch (Exception e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user