Skip to content

Commit

Permalink
Forward delegateQueue through to the backing session
Browse files Browse the repository at this point in the history
  • Loading branch information
cysp committed Apr 6, 2019
1 parent 5875e4a commit 341154c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Sources/DVR/Session.swift
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ open class Session: URLSession {
return backingSession.delegate
}

open override var delegateQueue: OperationQueue {
return backingSession.delegateQueue
}

// MARK: - Initializers

public init(outputDirectory: String = "~/Desktop/DVR/", cassetteName: String, testBundle: Bundle = Session.defaultTestBundle!, backingSession: URLSession = URLSession.shared) {
Expand Down

0 comments on commit 341154c

Please sign in to comment.