Skip to content

Commit

Permalink
issue with tick params in wrong order
Browse files Browse the repository at this point in the history
  • Loading branch information
pjfanning committed Apr 25, 2024
1 parent 015ddd3 commit 799b417
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class JdbcReadJournal(config: Config, configPath: String)(implicit val system: E
JournalSequenceActor.props(readJournalDao, readJournalConfig.journalSequenceRetrievalConfiguration),
s"$configPath.pekko-persistence-jdbc-journal-sequence-actor")
private val delaySource =
Source.tick(readJournalConfig.refreshInterval, 0.seconds, 0).take(1)
Source.tick(0.seconds, readJournalConfig.refreshInterval, 0).take(1)

/**
* Same type of query as `persistenceIds` but the event stream
Expand Down

0 comments on commit 799b417

Please sign in to comment.