diff --git a/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerMetrics.swift b/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerMetrics.swift index 38760c89..cafcaaa5 100644 --- a/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerMetrics.swift +++ b/Source/AwsCommonRuntimeKit/http/HTTPClientConnectionManagerMetrics.swift @@ -15,9 +15,9 @@ public struct HTTPClientConnectionManagerMetrics { public var leasedConcurrency: Int public init( - availableConcurrency: Int = 0, - pendingConcurrencyAcquires: Int = 0, - leasedConcurrency: Int = 0 + availableConcurrency: Int, + pendingConcurrencyAcquires: Int, + leasedConcurrency: Int ) { self.availableConcurrency = availableConcurrency self.pendingConcurrencyAcquires = pendingConcurrencyAcquires