Skip to content

Commit be04bb5

Browse files
committed
remove: staging URLs
1 parent 66ba3b7 commit be04bb5

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/main/java/com/browserstack/automate/ci/common/tracking/PluginsTracker.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@
1717

1818
public class PluginsTracker {
1919
private static final MediaType JSON = MediaType.get("application/json; charset=utf-8");
20-
// private static final String URL = "https://api.browserstack.com/ci_plugins/track";
21-
private static final String URL = "https://apiwtf2.bsstag.com/ci_plugins/track";
20+
private static final String URL = "https://api.browserstack.com/ci_plugins/track";
2221
private static final OkHttpClient client = new OkHttpClient();
2322
private final String trackingId;
2423
private String username;

src/main/java/com/browserstack/automate/ci/jenkins/BrowserStackReportForBuild.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,8 @@ private void fetchBuildAndSessions() {
8282

8383
BrowserStackClient client;
8484
if (projectType == ProjectType.APP_AUTOMATE) {
85-
// will be removing the following line...
86-
System.setProperty("browserstack.app-automate.api", "https://apiwtf2.bsstag.com/app-automate");
8785
client = new AppAutomateClient(credentials.getUsername(), credentials.getDecryptedAccesskey());
8886
} else {
89-
// will be removing the following line before publishing for production
90-
System.setProperty("browserstack.automate.api", "https://apiwtf2.bsstag.com/automate");
9187
client = new AutomateClient(credentials.getUsername(), credentials.getDecryptedAccesskey());
9288
}
9389

0 commit comments

Comments
 (0)