Skip to content

Commit

Permalink
fix: Changes the filename format, so files are more easy to order by …
Browse files Browse the repository at this point in the history
…date.
  • Loading branch information
bgrozev committed Oct 18, 2017
1 parent 36002de commit 1228d48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public abstract class AbstractTranscriptPublisher<T>
*/
protected static String generateHardToGuessFileName()
{
return "transcript_" + UUID.randomUUID() + "_" + Instant.now();
return "transcript_" + Instant.now() + "_" + UUID.randomUUID();
}

/**
Expand Down

0 comments on commit 1228d48

Please sign in to comment.