File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed
java/com/logicalclocks/hsfs/spark Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,8 @@ void testParsingJsonWhenDeprecatedFeatureGroup() throws JsonProcessingException
87
87
// Assert
88
88
Mockito .verify (appender , Mockito .times (1 )).doAppend (argument .capture ());
89
89
Assert .assertEquals (Level .WARN , argument .getValue ().getLevel ());
90
- Assert .assertEquals ("Feature Group `test_fg`, version `1` is deprecated" , argument .getValue ().getMessage ());
90
+ Assert .assertEquals ("Feature Group `test_fg`, version `1` is deprecated" ,
91
+ argument .getValue ().getMessage ().toString ());
91
92
Assert .assertEquals ("com.logicalclocks.hsfs.FeatureGroupBase" , argument .getValue ().getLoggerName ());
92
93
}
93
94
}
Original file line number Diff line number Diff line change @@ -66,7 +66,8 @@ void testParsingJsonWhenDeprecatedFeatureGroup() throws JsonProcessingException
66
66
// Assert
67
67
Mockito .verify (appender , Mockito .times (1 )).doAppend (argument .capture ());
68
68
Assert .assertEquals (Level .WARN , argument .getValue ().getLevel ());
69
- Assert .assertEquals ("Feature Group `test_fg`, version `1` is deprecated" , argument .getValue ().getMessage ());
69
+ Assert .assertEquals ("Feature Group `test_fg`, version `1` is deprecated" ,
70
+ argument .getValue ().getMessage ().toString ());
70
71
Assert .assertEquals ("com.logicalclocks.hsfs.FeatureGroupBase" , argument .getValue ().getLoggerName ());
71
72
}
72
73
}
Original file line number Diff line number Diff line change
1
+ #
2
+ # Copyright (c) 2024 Hopsworks AB
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ #
14
+ # See the License for the specific language governing permissions and limitations under the License.
15
+ #
16
+
17
+ rootLogger.level = warn
You can’t perform that action at this time.
0 commit comments