|
|
@@ -91,6 +91,8 @@ extension Timeline: CustomStringConvertible {
|
|
|
let serializationDuration = String(format: "%.3f", self.serializationDuration)
|
|
|
let totalDuration = String(format: "%.3f", self.totalDuration)
|
|
|
|
|
|
+ // NOTE: Had to move to string concatenation due to memory leak filed as rdar://26761490. Once memory leak is
|
|
|
+ // fixed, we should move back to string interpolation by reverting commit 7d4a43b1.
|
|
|
let timings = [
|
|
|
"\"Latency\": " + latency + " secs",
|
|
|
"\"Request Duration\": " + requestDuration + " secs",
|
|
|
@@ -118,6 +120,8 @@ extension Timeline: CustomDebugStringConvertible {
|
|
|
let serializationDuration = String(format: "%.3f", self.serializationDuration)
|
|
|
let totalDuration = String(format: "%.3f", self.totalDuration)
|
|
|
|
|
|
+ // NOTE: Had to move to string concatenation due to memory leak filed as rdar://26761490. Once memory leak is
|
|
|
+ // fixed, we should move back to string interpolation by reverting commit 7d4a43b1.
|
|
|
let timings = [
|
|
|
"\"Request Start Time\": " + requestStartTime,
|
|
|
"\"Initial Response Time\": " + initialResponseTime,
|