File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -639,7 +639,8 @@ extension ConfigReader {
639639 ) async throws -> Return {
640640 let absoluteKey = keyPrefix. appending ( key)
641641 return try await provider. watchValue ( forKey: absoluteKey, type: type) { updates in
642- let mappedUpdates = updates
642+ let mappedUpdates =
643+ updates
643644 . map { updateTuple in
644645 let ( providerResults, value) = mergingIsSecret (
645646 isSecret,
@@ -715,7 +716,8 @@ extension ConfigReader {
715716 ) async throws -> Return {
716717 let absoluteKey = keyPrefix. appending ( key)
717718 return try await provider. watchValue ( forKey: absoluteKey, type: type) { updates in
718- let mappedUpdates = updates
719+ let mappedUpdates =
720+ updates
719721 . map { updateTuple in
720722 let ( providerResults, value) = mergingIsSecret (
721723 isSecret,
@@ -790,7 +792,8 @@ extension ConfigReader {
790792 ) async throws -> Return {
791793 let absoluteKey = keyPrefix. appending ( key)
792794 return try await provider. watchValue ( forKey: absoluteKey, type: type) { updates in
793- let mappedUpdates = updates
795+ let mappedUpdates =
796+ updates
794797 . mapThrowing { updateTuple in
795798 let ( providerResults, value) = mergingIsSecret (
796799 isSecret,
You can’t perform that action at this time.
0 commit comments