Skip to content

Commit

Permalink
Fixed default file path (#2070)
Browse files Browse the repository at this point in the history
  • Loading branch information
dkirov-dev authored Nov 13, 2023
1 parent b5bdb0f commit 814bffd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import java.util.Random

class PcapWriter(
parentLogger: Logger,
filePath: String = "/tmp/${Random().nextLong()}.pcap}"
filePath: String = "/tmp/${Random().nextLong()}.pcap"
) : ObserverNode("PCAP writer") {
private val logger = createChildLogger(parentLogger)
private val lazyHandle = lazy {
Expand Down

0 comments on commit 814bffd

Please sign in to comment.