Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

Commit

Permalink
enhance orphand detection (#79)
Browse files Browse the repository at this point in the history
Signed-off-by: Ayman <[email protected]>
Co-authored-by: Ayman <[email protected]>
  • Loading branch information
khalifapro and enkhalifapro authored Feb 15, 2023
1 parent a362082 commit 15cd98c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/git/git.go
Original file line number Diff line number Diff line change
Expand Up @@ -2966,7 +2966,7 @@ func (j *DSGit) handleDataLakeOrphans() {
}

for _, v := range cachedCommits {
if v.Orphaned && v.FromDL {
if v.Orphaned {
commitB, err := b64.StdEncoding.DecodeString(v.Content)
if err != nil {
j.log.WithFields(logrus.Fields{"operation": "handleDataLakeOrphans"}).Errorf("error decode datalake orphand commit: %+v", err)
Expand Down

0 comments on commit 15cd98c

Please sign in to comment.