newrelic
Version:
New Relic agent
18 lines (15 loc) • 560 B
JavaScript
/*
* Copyright 2026 New Relic Corporation. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*/
const SmithyClientSendSubscriber = require('./send')
/**
* Extends SmithyClientSendSubscriber to handle the legacy `@aws-sdk/smithy-client`
* package, which older AWS SDK v3 versions depend on instead of `@smithy/smithy-client`.
*/
module.exports = class LegacySmithyClientSendSubscriber extends SmithyClientSendSubscriber {
constructor({ agent, logger }) {
super({ agent, logger, packageName: '@aws-sdk/smithy-client' })
}
}