The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CircuitBreaker, reference 5.1.0 (bd4255), with Swift 6.3 for Android on 13 Apr 2026 04:35:25 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Kitura/CircuitBreaker.git
Reference: 5.1.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/Kitura/CircuitBreaker
 * tag               5.1.0      -> FETCH_HEAD
HEAD is now at bd42557 Swift 5.2 is now the minimum supported version.  Update github org to Kitura (#57)
Cloned https://github.com/Kitura/CircuitBreaker.git
Revision (git rev-parse @):
bd4255762e48cc3748a448d197f1297a4ba705f7
SUCCESS checkout https://github.com/Kitura/CircuitBreaker.git at 5.1.0
========================================
Build
========================================
Selected platform:         android
Swift version:             6.3
Building package at path:  $PWD
https://github.com/Kitura/CircuitBreaker.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Fetching https://github.com/Kitura/LoggerAPI.git
[1/771] Fetching loggerapi
Fetched https://github.com/Kitura/LoggerAPI.git from cache (0.84s)
Computing version for https://github.com/Kitura/LoggerAPI.git
Computed https://github.com/Kitura/LoggerAPI.git at 1.9.200 (1.35s)
Fetching https://github.com/apple/swift-log.git
[1/6521] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.48s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.11.0 (0.96s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.11.0
Creating working copy for https://github.com/Kitura/LoggerAPI.git
Working copy of https://github.com/Kitura/LoggerAPI.git resolved at 1.9.200
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version--4F562202D5529B1.txt
[5/10] Compiling Logging MetadataProvider.swift
[6/10] Compiling Logging LogHandler.swift
[7/10] Compiling Logging Logging.swift
[8/10] Compiling Logging Locks.swift
[9/10] Emitting module Logging
[10/10] Compiling Logging LogEvent.swift
[12/13] Emitting module LoggerAPI
[13/13] Compiling LoggerAPI Logger.swift
[15/24] Compiling CircuitBreaker Stats.swift
[16/25] Compiling CircuitBreaker MonitorCollection.swift
[17/25] Compiling CircuitBreaker Monitor.swift
/host/spi-builder-workspace/Sources/CircuitBreaker/Monitor.swift:34:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
32 |
33 | /// Protocol identifying a statistics provider.
34 | public protocol StatsProvider: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
35 |
36 |   /// Registers a monitor for a referenced CircuitBreaker.
[18/25] Compiling CircuitBreaker Snapshot.swift
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:69:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 67 |
 68 |   /// Type of data object
 69 |   let type: String = "HystrixCommand"
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'type' case to silence this warning
    |       `- note: make the property mutable instead
 70 |
 71 |   // Untracked Stats
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:72:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 70 |
 71 |   // Untracked Stats
 72 |   let rollingCountBadRequests: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountBadRequests' case to silence this warning
    |       `- note: make the property mutable instead
 73 |   let rollingCountCollapsedRequests: Int = 0
 74 |   let rollingCountExceptionsThrown: Int =  0
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:73:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 71 |   // Untracked Stats
 72 |   let rollingCountBadRequests: Int = 0
 73 |   let rollingCountCollapsedRequests: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountCollapsedRequests' case to silence this warning
    |       `- note: make the property mutable instead
 74 |   let rollingCountExceptionsThrown: Int =  0
 75 |   let rollingCountFallbackFailure: Int = 0
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:74:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 72 |   let rollingCountBadRequests: Int = 0
 73 |   let rollingCountCollapsedRequests: Int = 0
 74 |   let rollingCountExceptionsThrown: Int =  0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountExceptionsThrown' case to silence this warning
    |       `- note: make the property mutable instead
 75 |   let rollingCountFallbackFailure: Int = 0
 76 |   let rollingCountFallbackRejection: Int = 0
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:75:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 73 |   let rollingCountCollapsedRequests: Int = 0
 74 |   let rollingCountExceptionsThrown: Int =  0
 75 |   let rollingCountFallbackFailure: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountFallbackFailure' case to silence this warning
    |       `- note: make the property mutable instead
 76 |   let rollingCountFallbackRejection: Int = 0
 77 |   let rollingCountFallbackSuccess: Int = 0
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:76:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 74 |   let rollingCountExceptionsThrown: Int =  0
 75 |   let rollingCountFallbackFailure: Int = 0
 76 |   let rollingCountFallbackRejection: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountFallbackRejection' case to silence this warning
    |       `- note: make the property mutable instead
 77 |   let rollingCountFallbackSuccess: Int = 0
 78 |   let rollingCountResponsesFromCache: Int = 0
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:77:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 75 |   let rollingCountFallbackFailure: Int = 0
 76 |   let rollingCountFallbackRejection: Int = 0
 77 |   let rollingCountFallbackSuccess: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountFallbackSuccess' case to silence this warning
    |       `- note: make the property mutable instead
 78 |   let rollingCountResponsesFromCache: Int = 0
 79 |   let rollingCountSemaphoreRejected: Int = 0
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:78:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 76 |   let rollingCountFallbackRejection: Int = 0
 77 |   let rollingCountFallbackSuccess: Int = 0
 78 |   let rollingCountResponsesFromCache: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountResponsesFromCache' case to silence this warning
    |       `- note: make the property mutable instead
 79 |   let rollingCountSemaphoreRejected: Int = 0
 80 |   let rollingCountThreadPoolRejected: Int = 0
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:79:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 77 |   let rollingCountFallbackSuccess: Int = 0
 78 |   let rollingCountResponsesFromCache: Int = 0
 79 |   let rollingCountSemaphoreRejected: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountSemaphoreRejected' case to silence this warning
    |       `- note: make the property mutable instead
 80 |   let rollingCountThreadPoolRejected: Int = 0
 81 |   let currentConcurrentExecutionCount: Int = 0
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:80:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 78 |   let rollingCountResponsesFromCache: Int = 0
 79 |   let rollingCountSemaphoreRejected: Int = 0
 80 |   let rollingCountThreadPoolRejected: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'rollingCountThreadPoolRejected' case to silence this warning
    |       `- note: make the property mutable instead
 81 |   let currentConcurrentExecutionCount: Int = 0
 82 |   let propertyValue_circuitBreakerRequestVolumeThreshold: Int = 0 //json.waitThreshold
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:81:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 79 |   let rollingCountSemaphoreRejected: Int = 0
 80 |   let rollingCountThreadPoolRejected: Int = 0
 81 |   let currentConcurrentExecutionCount: Int = 0
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'currentConcurrentExecutionCount' case to silence this warning
    |       `- note: make the property mutable instead
 82 |   let propertyValue_circuitBreakerRequestVolumeThreshold: Int = 0 //json.waitThreshold
 83 |   let propertyValue_circuitBreakerSleepWindowInMilliseconds: Int = 0 //json.circuitDuration
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:82:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 80 |   let rollingCountThreadPoolRejected: Int = 0
 81 |   let currentConcurrentExecutionCount: Int = 0
 82 |   let propertyValue_circuitBreakerRequestVolumeThreshold: Int = 0 //json.waitThreshold
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_circuitBreakerRequestVolumeThreshold' case to silence this warning
    |       `- note: make the property mutable instead
 83 |   let propertyValue_circuitBreakerSleepWindowInMilliseconds: Int = 0 //json.circuitDuration
 84 |   let propertyValue_circuitBreakerErrorThresholdPercentage: Int = 0 //json.threshold
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:83:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 81 |   let currentConcurrentExecutionCount: Int = 0
 82 |   let propertyValue_circuitBreakerRequestVolumeThreshold: Int = 0 //json.waitThreshold
 83 |   let propertyValue_circuitBreakerSleepWindowInMilliseconds: Int = 0 //json.circuitDuration
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_circuitBreakerSleepWindowInMilliseconds' case to silence this warning
    |       `- note: make the property mutable instead
 84 |   let propertyValue_circuitBreakerErrorThresholdPercentage: Int = 0 //json.threshold
 85 |   let propertyValue_circuitBreakerForceOpen: Bool = false
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:84:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 82 |   let propertyValue_circuitBreakerRequestVolumeThreshold: Int = 0 //json.waitThreshold
 83 |   let propertyValue_circuitBreakerSleepWindowInMilliseconds: Int = 0 //json.circuitDuration
 84 |   let propertyValue_circuitBreakerErrorThresholdPercentage: Int = 0 //json.threshold
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_circuitBreakerErrorThresholdPercentage' case to silence this warning
    |       `- note: make the property mutable instead
 85 |   let propertyValue_circuitBreakerForceOpen: Bool = false
 86 |   let propertyValue_circuitBreakerForceClosed: Bool = false
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:85:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 83 |   let propertyValue_circuitBreakerSleepWindowInMilliseconds: Int = 0 //json.circuitDuration
 84 |   let propertyValue_circuitBreakerErrorThresholdPercentage: Int = 0 //json.threshold
 85 |   let propertyValue_circuitBreakerForceOpen: Bool = false
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_circuitBreakerForceOpen' case to silence this warning
    |       `- note: make the property mutable instead
 86 |   let propertyValue_circuitBreakerForceClosed: Bool = false
 87 |   let propertyValue_circuitBreakerEnabled: Bool = true
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:86:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 84 |   let propertyValue_circuitBreakerErrorThresholdPercentage: Int = 0 //json.threshold
 85 |   let propertyValue_circuitBreakerForceOpen: Bool = false
 86 |   let propertyValue_circuitBreakerForceClosed: Bool = false
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_circuitBreakerForceClosed' case to silence this warning
    |       `- note: make the property mutable instead
 87 |   let propertyValue_circuitBreakerEnabled: Bool = true
 88 |   let propertyValue_executionIsolationStrategy: String = "THREAD"
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:87:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 85 |   let propertyValue_circuitBreakerForceOpen: Bool = false
 86 |   let propertyValue_circuitBreakerForceClosed: Bool = false
 87 |   let propertyValue_circuitBreakerEnabled: Bool = true
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_circuitBreakerEnabled' case to silence this warning
    |       `- note: make the property mutable instead
 88 |   let propertyValue_executionIsolationStrategy: String = "THREAD"
 89 |   let propertyValue_executionIsolationThreadTimeoutInMilliseconds: Int = 800
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:88:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 86 |   let propertyValue_circuitBreakerForceClosed: Bool = false
 87 |   let propertyValue_circuitBreakerEnabled: Bool = true
 88 |   let propertyValue_executionIsolationStrategy: String = "THREAD"
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_executionIsolationStrategy' case to silence this warning
    |       `- note: make the property mutable instead
 89 |   let propertyValue_executionIsolationThreadTimeoutInMilliseconds: Int = 800
 90 |   let propertyValue_executionIsolationThreadInterruptOnTimeout: Bool = true
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:89:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 87 |   let propertyValue_circuitBreakerEnabled: Bool = true
 88 |   let propertyValue_executionIsolationStrategy: String = "THREAD"
 89 |   let propertyValue_executionIsolationThreadTimeoutInMilliseconds: Int = 800
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_executionIsolationThreadTimeoutInMilliseconds' case to silence this warning
    |       `- note: make the property mutable instead
 90 |   let propertyValue_executionIsolationThreadInterruptOnTimeout: Bool = true
 91 |   let propertyValue_executionIsolationThreadPoolKeyOverride: String? = nil
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:90:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 88 |   let propertyValue_executionIsolationStrategy: String = "THREAD"
 89 |   let propertyValue_executionIsolationThreadTimeoutInMilliseconds: Int = 800
 90 |   let propertyValue_executionIsolationThreadInterruptOnTimeout: Bool = true
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_executionIsolationThreadInterruptOnTimeout' case to silence this warning
    |       `- note: make the property mutable instead
 91 |   let propertyValue_executionIsolationThreadPoolKeyOverride: String? = nil
 92 |   let propertyValue_executionIsolationSemaphoreMaxConcurrentRequests: Int = 20 //
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:91:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 89 |   let propertyValue_executionIsolationThreadTimeoutInMilliseconds: Int = 800
 90 |   let propertyValue_executionIsolationThreadInterruptOnTimeout: Bool = true
 91 |   let propertyValue_executionIsolationThreadPoolKeyOverride: String? = nil
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_executionIsolationThreadPoolKeyOverride' case to silence this warning
    |       `- note: make the property mutable instead
 92 |   let propertyValue_executionIsolationSemaphoreMaxConcurrentRequests: Int = 20 //
 93 |   let propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests: Int = 10 //
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:92:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 90 |   let propertyValue_executionIsolationThreadInterruptOnTimeout: Bool = true
 91 |   let propertyValue_executionIsolationThreadPoolKeyOverride: String? = nil
 92 |   let propertyValue_executionIsolationSemaphoreMaxConcurrentRequests: Int = 20 //
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_executionIsolationSemaphoreMaxConcurrentRequests' case to silence this warning
    |       `- note: make the property mutable instead
 93 |   let propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests: Int = 10 //
 94 |   let propertyValue_metricsRollingStatisticalWindowInMilliseconds: Int = 10000 //
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:93:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 91 |   let propertyValue_executionIsolationThreadPoolKeyOverride: String? = nil
 92 |   let propertyValue_executionIsolationSemaphoreMaxConcurrentRequests: Int = 20 //
 93 |   let propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests: Int = 10 //
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests' case to silence this warning
    |       `- note: make the property mutable instead
 94 |   let propertyValue_metricsRollingStatisticalWindowInMilliseconds: Int = 10000 //
 95 |   let propertyValue_requestCacheEnabled: Bool = false
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:94:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 92 |   let propertyValue_executionIsolationSemaphoreMaxConcurrentRequests: Int = 20 //
 93 |   let propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests: Int = 10 //
 94 |   let propertyValue_metricsRollingStatisticalWindowInMilliseconds: Int = 10000 //
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_metricsRollingStatisticalWindowInMilliseconds' case to silence this warning
    |       `- note: make the property mutable instead
 95 |   let propertyValue_requestCacheEnabled: Bool = false
 96 |   let propertyValue_requestLogEnabled: Bool = false
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:95:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 93 |   let propertyValue_fallbackIsolationSemaphoreMaxConcurrentRequests: Int = 10 //
 94 |   let propertyValue_metricsRollingStatisticalWindowInMilliseconds: Int = 10000 //
 95 |   let propertyValue_requestCacheEnabled: Bool = false
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_requestCacheEnabled' case to silence this warning
    |       `- note: make the property mutable instead
 96 |   let propertyValue_requestLogEnabled: Bool = false
 97 |   let reportingHosts: Int = 1
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:96:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 94 |   let propertyValue_metricsRollingStatisticalWindowInMilliseconds: Int = 10000 //
 95 |   let propertyValue_requestCacheEnabled: Bool = false
 96 |   let propertyValue_requestLogEnabled: Bool = false
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'propertyValue_requestLogEnabled' case to silence this warning
    |       `- note: make the property mutable instead
 97 |   let reportingHosts: Int = 1
 98 |
/host/spi-builder-workspace/Sources/CircuitBreaker/Snapshot.swift:97:7: warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
 95 |   let propertyValue_requestCacheEnabled: Bool = false
 96 |   let propertyValue_requestLogEnabled: Bool = false
 97 |   let reportingHosts: Int = 1
    |       |- warning: immutable property will not be decoded because it is declared with an initial value which cannot be overwritten
    |       |- note: set the initial value via the initializer or explicitly define a CodingKeys enum including a 'reportingHosts' case to silence this warning
    |       `- note: make the property mutable instead
 98 |
 99 |   /// Initialize a snapshot of the current statistics.
[19/25] Compiling CircuitBreaker Utils.swift
[20/25] Compiling CircuitBreaker BreakerError.swift
/host/spi-builder-workspace/Sources/CircuitBreaker/Bulkhead.swift:37:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
35 |             self?.concurrentQueue.async {
36 |                 task()
37 |                 self?.semaphore.signal()
   |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
38 |             }
39 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[21/25] Compiling CircuitBreaker Bulkhead.swift
/host/spi-builder-workspace/Sources/CircuitBreaker/Bulkhead.swift:37:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
35 |             self?.concurrentQueue.async {
36 |                 task()
37 |                 self?.semaphore.signal()
   |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
38 |             }
39 |         }
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[22/25] Emitting module CircuitBreaker
/host/spi-builder-workspace/Sources/CircuitBreaker/CircuitBreaker.swift:43:39: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 36 | /// For a more complete example see the
 37 | /// [CircuitBreaker README](https://github.com/Kitura/CircuitBreaker).
 38 | public class CircuitBreaker<A, B> {
    |                             `- note: 'A' previously declared here
 39 |
 40 |   // MARK: Closure Aliases
 41 |
 42 |   /// The context function that runs using the given arguments of generic type A.
 43 |   public typealias AnyContextFunction<A> = (Invocation<A, B>) -> Void
    |                                       `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 44 |
 45 |   /// The fallback function that runs when the invocation fails.
/host/spi-builder-workspace/Sources/CircuitBreaker/CircuitBreaker.swift:46:32: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 36 | /// For a more complete example see the
 37 | /// [CircuitBreaker README](https://github.com/Kitura/CircuitBreaker).
 38 | public class CircuitBreaker<A, B> {
    |                                `- note: 'B' previously declared here
 39 |
 40 |   // MARK: Closure Aliases
    :
 44 |
 45 |   /// The fallback function that runs when the invocation fails.
 46 |   public typealias AnyFallback<B> = (BreakerError, B) -> Void
    |                                `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 47 |
 48 |   // MARK: Public Fields
/host/spi-builder-workspace/Sources/CircuitBreaker/Monitor.swift:34:32: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
32 |
33 | /// Protocol identifying a statistics provider.
34 | public protocol StatsProvider: class {
   |                                `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
35 |
36 |   /// Registers a monitor for a referenced CircuitBreaker.
[23/25] Compiling CircuitBreaker CircuitBreaker.swift
/host/spi-builder-workspace/Sources/CircuitBreaker/CircuitBreaker.swift:43:39: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 36 | /// For a more complete example see the
 37 | /// [CircuitBreaker README](https://github.com/Kitura/CircuitBreaker).
 38 | public class CircuitBreaker<A, B> {
    |                             `- note: 'A' previously declared here
 39 |
 40 |   // MARK: Closure Aliases
 41 |
 42 |   /// The context function that runs using the given arguments of generic type A.
 43 |   public typealias AnyContextFunction<A> = (Invocation<A, B>) -> Void
    |                                       `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 44 |
 45 |   /// The fallback function that runs when the invocation fails.
/host/spi-builder-workspace/Sources/CircuitBreaker/CircuitBreaker.swift:46:32: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 36 | /// For a more complete example see the
 37 | /// [CircuitBreaker README](https://github.com/Kitura/CircuitBreaker).
 38 | public class CircuitBreaker<A, B> {
    |                                `- note: 'B' previously declared here
 39 |
 40 |   // MARK: Closure Aliases
    :
 44 |
 45 |   /// The fallback function that runs when the invocation fails.
 46 |   public typealias AnyFallback<B> = (BreakerError, B) -> Void
    |                                `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 47 |
 48 |   // MARK: Public Fields
[24/25] Compiling CircuitBreaker Collection.swift
/host/spi-builder-workspace/Sources/CircuitBreaker/CircuitBreaker.swift:43:39: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 36 | /// For a more complete example see the
 37 | /// [CircuitBreaker README](https://github.com/Kitura/CircuitBreaker).
 38 | public class CircuitBreaker<A, B> {
    |                             `- note: 'A' previously declared here
 39 |
 40 |   // MARK: Closure Aliases
 41 |
 42 |   /// The context function that runs using the given arguments of generic type A.
 43 |   public typealias AnyContextFunction<A> = (Invocation<A, B>) -> Void
    |                                       `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 44 |
 45 |   /// The fallback function that runs when the invocation fails.
/host/spi-builder-workspace/Sources/CircuitBreaker/CircuitBreaker.swift:46:32: warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 36 | /// For a more complete example see the
 37 | /// [CircuitBreaker README](https://github.com/Kitura/CircuitBreaker).
 38 | public class CircuitBreaker<A, B> {
    |                                `- note: 'B' previously declared here
 39 |
 40 |   // MARK: Closure Aliases
    :
 44 |
 45 |   /// The fallback function that runs when the invocation fails.
 46 |   public typealias AnyFallback<B> = (BreakerError, B) -> Void
    |                                `- warning: generic parameter 'B' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 47 |
 48 |   // MARK: Public Fields
[25/25] Compiling CircuitBreaker Invocation.swift
Build complete! (21.59s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "loggerapi",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.9.200",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Kitura/LoggerAPI.git"
    }
  ],
  "manifest_display_name" : "CircuitBreaker",
  "name" : "CircuitBreaker",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CircuitBreaker",
      "targets" : [
        "CircuitBreaker"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CircuitBreakerTests",
      "module_type" : "SwiftTarget",
      "name" : "CircuitBreakerTests",
      "path" : "Tests/CircuitBreakerTests",
      "sources" : [
        "CircuitBreakerTests.swift",
        "StatsTests.swift"
      ],
      "target_dependencies" : [
        "CircuitBreaker"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CircuitBreaker",
      "module_type" : "SwiftTarget",
      "name" : "CircuitBreaker",
      "path" : "Sources/CircuitBreaker",
      "product_dependencies" : [
        "LoggerAPI"
      ],
      "product_memberships" : [
        "CircuitBreaker"
      ],
      "sources" : [
        "BreakerError.swift",
        "Bulkhead.swift",
        "CircuitBreaker.swift",
        "Collection.swift",
        "Invocation.swift",
        "Monitor.swift",
        "MonitorCollection.swift",
        "Snapshot.swift",
        "Stats.swift",
        "Utils.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.