Skip to content

Commit

Permalink
remove default 0
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Jul 2, 2024
1 parent 3feb805 commit cdb9b14
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cdb9b14

Please sign in to comment.