File tree 2 files changed +4
-3
lines changed
ParseServerSwift/Extensions
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,11 @@ enum Entrypoint {
22
22
23
23
// This attempts to install NIO as the Swift Concurrency global executor.
24
24
// You should not call any async functions before this point.
25
+ // swiftlint:disable:next line_length
25
26
let executorTakeoverSuccess = NIOSingletons . unsafeTryInstallSingletonPosixEventLoopGroupAsConcurrencyGlobalExecutor ( )
26
- app. logger. debug ( " Running with \( executorTakeoverSuccess ? " SwiftNIO " : " standard " ) Swift Concurrency default executor " )
27
+ app. logger. debug (
28
+ " Running with \( executorTakeoverSuccess ? " SwiftNIO " : " standard " ) Swift Concurrency default executor "
29
+ )
27
30
28
31
try await parseServerSwiftConfigure ( app)
29
32
try await app. execute ( )
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ public extension ParseHookRequestable {
24
24
*/
25
25
func options(
26
26
_ request: Request ,
27
- // swiftlint:disable:next line_length
28
27
parseServerURLStrings: [ String ] = ParseServerSwift . configuration. parseServerURLStrings
29
28
) throws -> API . Options {
30
29
var options = self . options ( )
@@ -47,7 +46,6 @@ public extension ParseHookRequestable {
47
46
func hydrateUser(
48
47
options: API . Options = [ ] ,
49
48
request: Request ,
50
- // swiftlint:disable:next line_length
51
49
parseServerURLStrings: [ String ] = ParseServerSwift . configuration. parseServerURLStrings
52
50
) async throws -> Self {
53
51
var updatedOptions = try self . options ( request, parseServerURLStrings: parseServerURLStrings)
You can’t perform that action at this time.
0 commit comments