You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Chesnay Schepler (JIRA)" <ji...@apache.org> on 2019/01/03 16:08:00 UTC

[jira] [Created] (FLINK-11261) BlobServer moves file with open OutputStream

Chesnay Schepler created FLINK-11261:
----------------------------------------

             Summary: BlobServer moves file with open OutputStream
                 Key: FLINK-11261
                 URL: https://issues.apache.org/jira/browse/FLINK-11261
             Project: Flink
          Issue Type: Bug
          Components: Local Runtime
    Affects Versions: 1.8.0
            Reporter: Chesnay Schepler
             Fix For: 1.8.0


Various tests fail on Windows because the BlobServer attempts to move a file while a {{FileOutputStream}} is still open:

BlobServer#putInputStream():
{code}
try (FileOutputStream fos = new FileOutputStream(incomingFile)) {
	[ ... use fos ... ]

	// moves file even though fos is still open
	blobKey = moveTempFileToStore(incomingFile, jobId, md.digest(), blobType);

	return blobKey;
} finally {
	...
}
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)