6

我正在为我正在开发的当前应用程序使用 AWS Appsync,并面临一个严重的问题,即每当我在 Appsync 客户端中触发查询时,当互联网连接速度较慢时,请求永远不会以回调结束。我在互联网上检查了有关此主题的信息来源有限,并且还发现此问题仍然存在。

这是我用来获取响应的代码

func getAllApi(completion:@escaping DataCallback){
    guard isInternetAvailabele() else {
        completion(nil)
        return
    }
    // AppSyncManager.Client() is AWSAppSyncClient Object
    AppSyncManager.Client().fetch(query: GetlAllPostQuery(input: allInputs), cachePolicy:.fetchIgnoringCacheData) {
        (result, error) in
        var haveError:Bool = error != nil
        if let _ = result?.data?.getAllPostings?.responseCode {haveError = false} else {haveError = true}
        if haveError  {
            print(error?.localizedDescription ?? "")
            completion(nil)
            return
        }

        if result != nil{
            completion(result)
        }else{
            completion(nil)
        }
    }
}

该代码适用于互联网连接,如果没有互联网,我已经在顶部检查过,但是当互联网连接速度较慢或 wifi 连接到我用我的手机创建的热点并禁用互联网数据时,请求不会返回任何回调,它应该在请求超时时发出失败警报,就像我们在其他 api 中获得的一样。是否支持请求超时或我错过了什么?

注意:我在终端中收到了这些日志

Task <06E9BBF4-5731-471B-9B7D-19E5E504E57F>.<45> HTTP load failed (error code: -1001 [1:60])
Task <D91CA952-DBB5-4DBD-9A90-98E2069DBE2D>.<46> HTTP load failed (error code: -1001 [1:60])
Task <06E9BBF4-5731-471B-9B7D-19E5E504E57F>.<45> finished with error - code: -1001
Task <D91CA952-DBB5-4DBD-9A90-98E2069DBE2D>.<46> finished with error - code: -1001
4

1 回答 1

6

实际上可能有两种可能的方法来解决这个问题,

1)在配置AWSAppSyncClientConfiguration时,提供自定义并根据您的需要URLSessionConfiguration设置请求,timeout

extension URLSessionConfiguration {

    /// A `URLSessionConfiguration` to have a request timeout of 1 minutes.
    static let customDelayed: URLSessionConfiguration = {
        let secondsInOneMinute = 60
        let numberOfMinutesForTimeout = 1
        let timoutInterval = TimeInterval(numberOfMinutesForTimeout * secondsInOneMinute)

        let configuration = URLSessionConfiguration.default
        configuration.timeoutIntervalForRequest = timoutInterval
        configuration.timeoutIntervalForResource = timoutInterval
        return configuration
    }()
}

并传递此会话配置,即URLSessionConfiguration.customDelayed在初始化时AWSAppSyncClientConfiguration,因为它URLSessionConfiguration在下面的构造函数中接受,

public convenience init(url: URL,
                        serviceRegion: AWSRegionType,
                        credentialsProvider: AWSCredentialsProvider,
                        urlSessionConfiguration: URLSessionConfiguration = URLSessionConfiguration.default,
                        databaseURL: URL? = nil,
                        connectionStateChangeHandler: ConnectionStateChangeHandler? = nil,
                        s3ObjectManager: AWSS3ObjectManager? = nil,
                        presignedURLClient: AWSS3ObjectPresignedURLGenerator? = nil) throws {

2)如果第一个不起作用,那么您还有另一个选项可以直接编辑/解锁 pod 文件。有一个类AWSAppSyncRetryHandler,您可以在其中更改重试请求的逻辑。如果您能够解决问题,那么您可以分叉原始存储库,克隆您的存储库,在您的存储库和 pods 文件中进行更改,指向该 pod 以使用您的存储库。应该这样做,因为直接更改 pod 文件是绝对错误的,直到您真正陷入困境并想找到一些解决方案。

更新:这个问题已经解决了AppSync SDK 2.7.0

于 2018-11-04T09:28:26.633 回答