Skip to content

Commit

Permalink
fix(marketo-bulk-upload): sonar issues (#2547)
Browse files Browse the repository at this point in the history
  • Loading branch information
krishna2020 authored Sep 4, 2023
2 parents 9e3ace1 + 88af79f commit 5ae2530
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file. See [standa
* **iterable:** squadcast alert ([#2535](https://github.com/rudderlabs/rudder-transformer/issues/2535)) ([5a2194b](https://github.com/rudderlabs/rudder-transformer/commit/5a2194baa2c07d5b0fbe7bd7f4cfdec9117661ba))
* missing type for page and group calls ([#2512](https://github.com/rudderlabs/rudder-transformer/issues/2512)) ([bf08b9e](https://github.com/rudderlabs/rudder-transformer/commit/bf08b9e7177dbe7920e50e014484189a0c336b75))
* remove secure environment for datafile call ([#2544](https://github.com/rudderlabs/rudder-transformer/issues/2544)) ([b069e26](https://github.com/rudderlabs/rudder-transformer/commit/b069e262e9864a60611ee1b1e8e6c91dad76b7f4))
* fix: marketo bulk upload bugs and refactor ([#2414](https://github.com/rudderlabs/rudder-transformer/issues/2414)) ([9e3ace1](https://github.com/rudderlabs/rudder-transformer/pull/2546/commits/9e3ace17012f8fae3db35608367d98840037d1c0))

### [1.39.1](https://github.com/rudderlabs/rudder-transformer/compare/v1.39.0...v1.39.1) (2023-08-28)

Expand Down
3 changes: 1 addition & 2 deletions src/v0/destinations/marketo_bulk_upload/fetchJobStatus.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
/* eslint-disable no-restricted-syntax */
/* eslint-disable no-prototype-builtins */
const { getAccessToken } = require('./util');
const { JOB_STATUS_ACTIVITY } = require('./config');
const { handleHttpRequest } = require('../../../adapters/network');
const { PlatformError, RetryableError } = require('../../util/errorTypes');
const { PlatformError } = require('../../util/errorTypes');
const stats = require('../../../util/stats');
const { JSON_MIME_TYPE } = require('../../util/constant');
const {
Expand Down
1 change: 0 additions & 1 deletion src/v0/destinations/marketo_bulk_upload/util.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
const { handleHttpRequest } = require('../../../adapters/network');
const {
ThrottledError,
AbortedError,
RetryableError,
NetworkError,
Expand Down

0 comments on commit 5ae2530

Please sign in to comment.