Skip to content
This repository has been archived by the owner on Apr 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1135 from cocoa-mhlw/feature/disable-send-event-log
Browse files Browse the repository at this point in the history
イベントログの送信をしないように修正
  • Loading branch information
cocoa-dev004 authored Sep 13, 2022
2 parents 3da2430 + ec52e5e commit b441a46
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 23 deletions.
9 changes: 0 additions & 9 deletions Covid19Radar/Covid19Radar.Android/MainApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,15 +102,6 @@ private void ScheduleBackgroundTasks()
_loggerService.Value.Exception("Failed to schedule ExposureDetectionBackgroundService", exception);
}

try
{
_eventLogSubmissionBackgroundService.Value.Schedule();
}
catch (Exception exception)
{
_loggerService.Value.Exception("Failed to schedule EventLogSubmissionBackgroundService", exception);
}

try
{
_dataMaintainanceService.Value.Schedule();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ internal Task ExecuteAsync()

_exposureDetectionBackgroundService.Schedule();
_dataMaintainanceBackgroundService.Schedule();
_eventLogSubmissionBackgroundService.Schedule();

_loggerService.EndMethod();

Expand Down
9 changes: 0 additions & 9 deletions Covid19Radar/Covid19Radar.iOS/AppDelegate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,15 +137,6 @@ private void ScheduleBackgroundTasks()
_loggerService.Value.Exception("Failed to schedule ExposureDetectionBackgroundService", exception);
}

try
{
_eventLogSubmissionBackgroundService.Value.Schedule();
}
catch (Exception exception)
{
_loggerService.Value.Exception("Failed to schedule EventLogSubmissionBackgroundService", exception);
}

try
{
_dataMaintainanceBackgroundService.Value.Schedule();
Expand Down
4 changes: 0 additions & 4 deletions Covid19Radar/Covid19Radar/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,6 @@ private async Task ExecuteBackgroundTask()

await EventLogRepository.RotateAsync(
AppConstants.EventLogFileExpiredSeconds);

await EventLogService.SendAllAsync(
AppConstants.EventLogMaxRequestSizeInBytes,
AppConstants.EventLogMaxRetry);
}
catch (Exception ex)
{
Expand Down

0 comments on commit b441a46

Please sign in to comment.