Skip to content

Commit

Permalink
test logs
Browse files Browse the repository at this point in the history
  • Loading branch information
icrc-fdeniger committed Aug 29, 2024
1 parent aca7a33 commit ddd757f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ import java.util.*
class TimestampBasedDownloadWorkManagerImpl(private val dataStore: DemoDataStore) : DownloadWorkManager {
private val resourceTypeList = ResourceType.values().map { it.name }
private val urls = LinkedList(listOf(
"Location?_summary=data&_tag=Login+Location",
"Patient",
"Encounter",
"Location?_sort=_lastUpdated&_summary=data&_tag=Login+Location",
"Patient?_sort=_lastUpdated",
"Encounter?_sort=_lastUpdated",
))
override suspend fun getNextRequest(): DownloadRequest? {
var url = urls.poll() ?: return null
Expand Down

0 comments on commit ddd757f

Please sign in to comment.