Skip to content

Commit

Permalink
chore: remove redundant https
Browse files Browse the repository at this point in the history
  • Loading branch information
yashasvibajpai committed Sep 20, 2024
1 parent 22985e9 commit 2481c59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/deviceModeInit.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ let _rudderTracking = (function () {

// common function for sending anonymousId and sessionId Identifier
function sendToRudderWebhook(data, type, updateTypeCookieFunction, retryAttempt = 0) {
const webhookUrl = 'https://dataplaneUrl_placeHolder/v1/webhook?writeKey=writeKey_placeHolder';
const webhookUrl = 'dataplaneUrl_placeHolder/v1/webhook?writeKey=writeKey_placeHolder';
const timeToRetry = 1000; // 1 second
const maxRetries = 3;
if (maxRetries > retryAttempt) {
Expand Down
2 changes: 1 addition & 1 deletion src/loadingCode.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
};
})(method);
}
rudderanalytics.load('writeKey', 'https://dataPlaneUrl', {
rudderanalytics.load('writeKey', 'dataPlaneUrl', {
configUrl: 'configBackendUrl',
logLevel: 'DEBUG',
});
Expand Down

0 comments on commit 2481c59

Please sign in to comment.