@@ -42,7 +42,7 @@ void testLoadAllTimestampsForToken() {
4242 final UUID uuidExpected = UUID .randomUUID ();
4343
4444 final PersistenceSpan differentTokenSpan = new PersistenceSpan (UUID .randomUUID (), gitCommitChecksum , "123L" , "" ,
45- "1L" , startEarly , endEarly , "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
45+ "1L" , startEarly , endEarly , "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
4646 "net.explorviz.Class.myMethod()" , "847" ,
4747 "iamapod" , "iamanode" , "iamanamespace" , "iamadeployment" );
4848
@@ -51,17 +51,17 @@ void testLoadAllTimestampsForToken() {
5151
5252 final PersistenceSpan firstOccurenceSpan = new PersistenceSpan (uuidExpected , gitCommitChecksum , "123L" , "" , "1L" ,
5353 startEarly , endEarly ,
54- "nodeIp" , "host-name" , "app-name" , "java" , 0 , "net.explorviz.Class." + duplicateMethodName , "847" ,
54+ "nodeIp" , "host-name" , "app-name" , "java" , "0" , "net.explorviz.Class." + duplicateMethodName , "847" ,
5555 "iamapod" , "iamanode" , "iamanamespace" , "iamadeployment" );
5656
5757 final PersistenceSpan secondOccurenceSpan = new PersistenceSpan (uuidExpected , gitCommitChecksum , "789L" , "" , "3L" ,
5858 startLate , endLate ,
59- "nodeIp" , "host-name" , "app-name" , "java" , 0 , "net.explorviz.Class." + duplicateMethodName , "847" ,
59+ "nodeIp" , "host-name" , "app-name" , "java" , "0" , "net.explorviz.Class." + duplicateMethodName , "847" ,
6060 "iamapod" , "iamanode" , "iamanamespace" , "iamadeployment" );
6161
6262 final PersistenceSpan otherSpan = new PersistenceSpan (uuidExpected , gitCommitChecksum , "456L" , "0L" , "" ,
6363 startExpected ,
64- endExpected , "nodeIp" , "host-name" , "app-name" , "java" , 0 , "net.explorviz.Class." + otherMethodName ,
64+ endExpected , "nodeIp" , "host-name" , "app-name" , "java" , "0" , "net.explorviz.Class." + otherMethodName ,
6565 "321" , "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
6666
6767 spanProcessor .accept (differentTokenSpan );
@@ -115,7 +115,7 @@ void testLoadNewerTimestampsForToken() {
115115 final UUID uuidExpected = UUID .randomUUID ();
116116
117117 final PersistenceSpan firstSpanOfFirstBucket = new PersistenceSpan (uuidExpected , gitCommitChecksum , "0123L" , "" ,
118- "1L" , firstBucketStart , firstBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
118+ "1L" , firstBucketStart , firstBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
119119 "net.explorviz.Class.myMethod()" , "847" , "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
120120
121121 final String duplicateMethodName = "myMethodName()" ;
@@ -124,18 +124,18 @@ void testLoadNewerTimestampsForToken() {
124124 final PersistenceSpan firstSpanOfSecondBuckec = new PersistenceSpan (uuidExpected , gitCommitChecksum , "123L" , "" ,
125125 "1L" , secondBucketStart ,
126126 secondBucketEnd ,
127- "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
127+ "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
128128 "net.explorviz.Class." + duplicateMethodName , "847" , "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
129129
130130 final PersistenceSpan firstSpanOfThirdBucket = new PersistenceSpan (uuidExpected , gitCommitChecksum , "789L" , "" ,
131131 "3L" , thirdBucketStart ,
132132 thirdBucketEnd ,
133- "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
133+ "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
134134 "net.explorviz.Class." + duplicateMethodName , "847" , "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
135135
136136 final PersistenceSpan secondSpanOfSecondBucket = new PersistenceSpan (uuidExpected , gitCommitChecksum , "456L" , "0L" ,
137137 "" , secondBucketStart ,
138- secondBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
138+ secondBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
139139 "net.explorviz.Class." + otherMethodName ,
140140 "321" , "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
141141
@@ -180,7 +180,7 @@ void testLoadAllTimestampsForTokenAndCommit() {
180180 final String expectedCommit = "testCommit" ;
181181
182182 final PersistenceSpan firstSpanOfFirstBucket = new PersistenceSpan (uuidExpected , "notTestCommit-1" , "0123L" , "" ,
183- "1L" , firstBucketStart , firstBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
183+ "1L" , firstBucketStart , firstBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
184184 "net.explorviz.Class.myMethod()" , "847" ,
185185 "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
186186
@@ -190,20 +190,20 @@ void testLoadAllTimestampsForTokenAndCommit() {
190190 final PersistenceSpan firstSpanOfSecondBuckec = new PersistenceSpan (uuidExpected , expectedCommit , "123L" , "" , "1L" ,
191191 secondBucketStart ,
192192 secondBucketEnd ,
193- "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
193+ "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
194194 "net.explorviz.Class." + duplicateMethodName , "847" ,
195195 "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
196196
197197 final PersistenceSpan firstSpanOfThirdBucket = new PersistenceSpan (uuidExpected , "notTestCommit-2" , "789L" , "" ,
198198 "3L" , thirdBucketStart ,
199199 thirdBucketEnd ,
200- "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
200+ "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
201201 "net.explorviz.Class." + duplicateMethodName , "847" ,
202202 "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
203203
204204 final PersistenceSpan secondSpanOfSecondBucket = new PersistenceSpan (uuidExpected , "notTestCommit-2" , "456L" , "0L" ,
205205 "" , secondBucketStart ,
206- secondBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
206+ secondBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
207207 "net.explorviz.Class." + otherMethodName ,
208208 "321" , "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
209209
@@ -244,7 +244,7 @@ void testLoadNewerTimestampsForTokenAndCommit() {
244244 final String expectedCommit = "testCommit" ;
245245
246246 final PersistenceSpan firstSpanOfFirstBucket = new PersistenceSpan (uuidExpected , expectedCommit , "0123L" , "" ,
247- "1L" , firstBucketStart , firstBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
247+ "1L" , firstBucketStart , firstBucketEnd , "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
248248 "net.explorviz.Class.myMethod()" , "847" ,
249249 "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
250250
@@ -254,20 +254,20 @@ void testLoadNewerTimestampsForTokenAndCommit() {
254254 final PersistenceSpan firstSpanOfSecondBuckec = new PersistenceSpan (uuidExpected , expectedCommit , "123L" , "" , "1L" ,
255255 secondBucketStart ,
256256 secondBucketEnd ,
257- "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
257+ "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
258258 "net.explorviz.Class." + duplicateMethodName , "847" ,
259259 "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
260260
261261 final PersistenceSpan firstSpanOfThirdBucket = new PersistenceSpan (uuidExpected , expectedCommit , "789L" , "" , "3L" ,
262262 thirdBucketStart ,
263263 thirdBucketEnd ,
264- "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
264+ "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
265265 "net.explorviz.Class." + duplicateMethodName , "847" ,
266266 "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
267267
268268 final PersistenceSpan secondSpanOfSecondBucket = new PersistenceSpan (uuidExpected , expectedCommit , "456L" , "0L" , "" ,
269269 secondBucketStart + 1000 ,
270- secondBucketEnd + 1000 , "nodeIp" , "host-name" , "app-name" , "java" , 0 ,
270+ secondBucketEnd + 1000 , "nodeIp" , "host-name" , "app-name" , "java" , "0" ,
271271 "net.explorviz.Class." + otherMethodName ,
272272 "321" ,
273273 "iamnotapod" , "iamnotanode" , "iamnotanamespace" , "iamnotadeployment" );
0 commit comments