src/integrationtests/java/com/aws/iot/integrationtests/edgeconnectorforkvs/videouploader/VideoUploaderIntegrationTest.java [169:180]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static Path createTempFolder(String tempFolderPrefix) {
        Path tempDir = null;

        try {
            tempDir = Files.createTempDirectory(tempFolderPrefix);
            log.info("Created temp folder: " + tempDir);
        } catch (IOException ex) {
            log.error("Unable to create temp folder");
        }

        return tempDir;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/integrationtests/java/com/aws/iot/integrationtests/edgeconnectorforkvs/HistoricalUploadingIntegrationTest.java [131:142]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private static Path createTempFolder(String tempFolderPrefix) {
        Path tempDir = null;

        try {
            tempDir = Files.createTempDirectory(tempFolderPrefix);
            log.info("Created temp folder: " + tempDir);
        } catch (IOException ex) {
            log.error("Unable to create temp folder");
        }

        return tempDir;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



