eric-wang-1990 commented on code in PR #2789: URL: https://github.com/apache/arrow-adbc/pull/2789#discussion_r2078027760
########## csharp/src/Drivers/Apache/Spark/SparkHttpMessageHandlerFactory.cs: ########## @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +using System; +using System.Collections.Generic; +using System.Net.Http; + +namespace Apache.Arrow.Adbc.Drivers.Apache.Spark +{ + /// <summary> + /// Factory for creating HTTP clients with proper configuration + /// </summary> + public class SparkHttpMessageHandlerFactory Review Comment: Yeah I think it's fine, there is only cloud fetch and oauth case. Actually for oauth you probably can just pass the handler to the httpClient constructor: https://github.com/apache/arrow-adbc/blob/ed2fe871ce9f7378b9aa9a03b51a9e498dd73207/csharp/src/Drivers/Databricks/Auth/OAuthClientCredentialsProvider.cs#L69 Try to see how bad it is, I think it's not that too bad. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
