Skip to content

Releases: dtinit/data-transfer-project

0.3.60

13 Dec 16:24
d64bd65
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.3.59...v0.3.60

0.3.59

08 Dec 11:43
c02d7e2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.3.58...v0.3.59

0.3.58

13 Oct 13:40
5e3cfd6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.3.57...v0.3.58

0.3.56

28 Apr 10:39
995efca
Compare
Choose a tag to compare
v0.3.56

0.3.57

28 Apr 10:31
a52ad68
Compare
Choose a tag to compare
Fix Google Calendar Event Title (#979)

Summary: The title and description of the event on Google Calendar is flipped. Change the methods appropriately

Test Plan:

Reviewers:

Subscribers:

Tasks:

Tags:

Blame Revision:

Differential Revision: https://phabricator.intern.facebook.com/D27899458

Co-authored-by: William Morland <[email protected]>

0.3.55

12 Feb 12:29
6080562
Compare
Choose a tag to compare
Updating Job Watcher service (#962)

Changes done:
Updating JobWatching service to check the job state as Preempted or errored.
This is one of the edge case which is to check whether the current job is errored or preempted, and stop the worker job all together.

Earlier, the JobWatching service was exiting the system in case job is cancelled.

0.3.54

02 Feb 19:02
653e679
Compare
Choose a tag to compare
Only add exception of error details to retryable exception (#956)

Summary:
Currently we are logging out both id and title of error details to
Retryable Import Exception. However, this makes the log line hard to be
categorized.

Since we are only logging the first error and we log error for
individual transfer item in the end, we can remove id and title from
here.

This commit is to do that.

Test Plan: build and check log line

Reviewers: #dtp

Subscribers: 

Tasks: T81987523

Tags: 

Blame Revision: 


Differential Revision: https://phabricator.intern.facebook.com/D26147813

0.3.53

28 Jan 16:06
7b6d9d7
Compare
Choose a tag to compare
Readd log lines for first retryable error (#955)

Summary:
We removed the error details from the logline in previous commit.
However, this log line is essential to our retry logic since we are
doing string matching to determine how worker is going to do the retry.

This commit is to add the first error back to the log line.

Test Plan: Build and verify the logline

0.3.52

26 Jan 12:04
a145e8f
Compare
Choose a tag to compare
Reduce duplicate logging in CallableImporter (#953)

Summary:
Currently CallableImporter throws out an IOException if
IdempotentImportExecutor recorded errors. This IOExcpetion would be
printed to severe logging if the subsequent retry failed. However, the
content of the exception contains first error and error counts. And
these are already duplicatedly logged in IdempotentImportExecutor. This
cause logs to spam and hard to categorize errors.

This commit is to simplify that by removing the spamming part of the
log.

Test Plan: Ran and checked the log line

Reviewers: #dtp

Subscribers: 

Tasks: T81987523

Tags: 

Blame Revision: 


Differential Revision: https://phabricator.intern.facebook.com/D25995302

0.3.51

14 Jan 10:16
dabb7f4
Compare
Choose a tag to compare
Improve severe logging with exception in seperate parameter (#951)

Summary:
Move the exception severe logging to the seperate parameter. So it can
be better displayed and parsed by logging framework.

Test Plan: Built/tested/loglined

Reviewers: #dtp

Subscribers:

Tasks: T81987523

Tags:

Blame Revision:

Differential Revision: https://phabricator.intern.facebook.com/D25824059