@@ -105,13 +105,13 @@ public final class Client {
105105 baseURL: BaseURL = Client . config. baseURL,
106106 callbackQueue: DispatchQueue ? = Client . config. callbackQueue,
107107 stayConnectedInBackground: Bool = Client . config. stayConnectedInBackground,
108- database: Database ? = Client . config. database,
108+ // database: Database? = Client.config.database,
109109 logOptions: ClientLogger . Options = Client . config. logOptions) {
110110 self . apiKey = apiKey
111111 self . baseURL = baseURL
112112 self . callbackQueue = callbackQueue
113113 self . stayConnectedInBackground = stayConnectedInBackground
114- self . database = database
114+ self . database = nil
115115 self . logOptions = logOptions
116116
117117 if logOptions == . all || logOptions == . requests || logOptions == . requestsHeaders {
@@ -164,13 +164,13 @@ extension Client {
164164 baseURL: BaseURL = BaseURL ( ) ,
165165 callbackQueue: DispatchQueue ? = nil ,
166166 stayConnectedInBackground: Bool = true ,
167- database: Database ? = nil ,
167+ // database: Database? = nil,
168168 logOptions: ClientLogger . Options = . none) {
169169 self . apiKey = apiKey
170170 self . baseURL = baseURL
171171 self . callbackQueue = callbackQueue
172172 self . stayConnectedInBackground = stayConnectedInBackground
173- self . database = database
173+ self . database = nil
174174 self . logOptions = logOptions
175175 }
176176 }
0 commit comments