|
45 | 45 | import picocli.CommandLine.Command; |
46 | 46 | import picocli.CommandLine.Mixin; |
47 | 47 | import picocli.CommandLine.Option; |
48 | | -import java.lang.module.ModuleDescriptor.Version; |
49 | 48 |
|
50 | 49 | import java.io.IOException; |
51 | 50 | import java.io.PrintWriter; |
52 | 51 | import java.lang.invoke.MethodHandles; |
| 52 | +import java.lang.module.ModuleDescriptor.Version; |
53 | 53 | import java.math.BigDecimal; |
54 | 54 | import java.net.URI; |
55 | 55 | import java.nio.file.Files; |
@@ -232,8 +232,9 @@ private void measureResultProcessing(Map<String, URI> uriListByKey, Set<String> |
232 | 232 | externalDataProcessorsUriSet.add(moduleUrl); |
233 | 233 | } |
234 | 234 | String moduleExtensionName = moduleId.getExtensionName(); |
235 | | - if (filterOptions.getExtensionName().equals(moduleExtensionName) |
236 | | - && filterOptions.getExternalDataProcessorUrl().equals(moduleUrl)) { |
| 235 | + if (rawMode |
| 236 | + || (filterOptions.getExtensionName().equals(moduleExtensionName) |
| 237 | + && filterOptions.getExternalDataProcessorUrl().equals(moduleUrl))) { |
237 | 238 | String objectId = moduleId.getObjectID(); |
238 | 239 | String propertyId = moduleId.getPropertyID(); |
239 | 240 | String key = Utils.getUriKey(objectId, propertyId); |
@@ -299,7 +300,7 @@ private void startSystem(UUID measureUuid) throws RuntimeDebugClientException { |
299 | 300 | throw new RuntimeDebugClientException("Can't connect to debug server. Connection result: " + connectionResult); |
300 | 301 | } |
301 | 302 | } |
302 | | - Version apiver = Version.parse(client.getApiVersion()); |
| 303 | + Version apiver = Version.parse(client.getApiVersion()); |
303 | 304 | logger.info("Setup settings..."); |
304 | 305 | client.initSettings(false); |
305 | 306 | client.setAutoconnectDebugTargets( |
@@ -342,7 +343,7 @@ protected void gracefulShutdown(PrintWriter serverPipeOut) { |
342 | 343 | } |
343 | 344 |
|
344 | 345 | Utils.dumpCoverageFile(coverageData, metadataOptions, outputOptions); |
345 | | - if(serverPipeOut!=null) { |
| 346 | + if (serverPipeOut != null) { |
346 | 347 | serverPipeOut.println(PipeMessages.OK_RESULT); |
347 | 348 | } |
348 | 349 | stopExecution.set(true); |
|
0 commit comments