Skip to content
Snippets Groups Projects

Add support for revision_log returning Revision objects

Open vlorentz requested to merge revision_log into master
1 unresolved thread

This is going to happen in the near future

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
300 300 # extract original changesets info and the transplant sources
301 301 hg_changesets = set()
302 302 transplant_sources = set()
303 for rev in loader.storage.revision_log(revisions):
303 for rev_d in loader.storage.revision_log(revisions):
304 if isinstance(rev_d, Revision):
305 # TODO: Remove this conditional after swh-storage fully migrated to
306 # returning revision objects instead of dicts.
307 rev = rev_d
308 else:
309 rev = Revision.from_dict(rev_d)
  • Nicolas Dandrimont resolved all threads

    resolved all threads

  • Nicolas Dandrimont approved this merge request

    approved this merge request

  • vlorentz added 2 commits

    added 2 commits

    • 8214dcc1 - 1 commit from branch master
    • 60da9f17 - Add support for revision_log returning Revision objects

    Compare with previous version

  • vlorentz enabled an automatic merge when the pipeline for 60da9f17 succeeds

    enabled an automatic merge when the pipeline for 60da9f17 succeeds

  • Jenkins job DLDHG/gitlab-builds #79 failed .
    See Console Output and Coverage Report for more details.

  • Antoine Lambert aborted the automatic merge because target branch was updated

    aborted the automatic merge because target branch was updated

  • vlorentz added 3 commits

    added 3 commits

    Compare with previous version

  • Jenkins job DLDHG/gitlab-builds #84 failed .
    See Console Output and Coverage Report for more details.

  • Please register or sign in to reply
    Loading