File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
sql/hive-thriftserver/src/main/java/org/apache/hive/service/cli/operation Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -240,14 +240,7 @@ protected void createOperationLog() {
240240 }
241241
242242 // create OperationLog object with above log file
243- try {
244- operationLog = new OperationLog (opHandle .toString (), operationLogFile , parentSession .getHiveConf ());
245- } catch (FileNotFoundException e ) {
246- LOG .warn ("Unable to instantiate OperationLog object for operation: {}" , e ,
247- MDC .of (LogKeys .OPERATION_HANDLE , opHandle ));
248- isOperationLogEnabled = false ;
249- return ;
250- }
243+ operationLog = new OperationLog (opHandle .toString (), operationLogFile , parentSession .getHiveConf ());
251244
252245 // register this operationLog to current thread
253246 operationManager .setCurrentOperationLog (operationLog , operationLogFile );
You can’t perform that action at this time.
0 commit comments