REPORT request errors with http:

Bug #75708 reported by David Cournapeau
4
Affects Status Importance Assigned to Milestone
Bazaar Subversion Plugin
Fix Released
Undecided
Jelmer Vernooij

Bug Description

I am still getting some errors when trying to convert scipy svn rep (http://svn.scipy.org/svn/scipy/trunk) with the command bzr import-svn http://svn.scipy.org/svn/scipy/trunk

I got the following uncaught exception:

Traceback (most recent call last):
  File "/usr/lib/python2.4/site-packages/bzrlib/commands.py", line 626, in run_bzr_catch_errors
    return run_bzr(argv)
  File "/usr/lib/python2.4/site-packages/bzrlib/commands.py", line 588, in run_bzr
    ret = run(*run_argv)
  File "/usr/lib/python2.4/site-packages/bzrlib/commands.py", line 292, in run_argv_aliases
    return self.run(**all_cmd_args)
  File "/usr/lib/python2.4/site-packages/bzrlib/commands.py", line 598, in ignore_pipe
    result = func(*args, **kwargs)
  File "/home/david/.bazaar/plugins/svn/__init__.py", line 117, in run
    trees)
  File "/home/david/.bazaar/plugins/svn/convert.py", line 74, in convert_repository
    source_branch.bzrdir.sprout(target_dir, source_branch.last_revision())
  File "/home/david/.bazaar/plugins/svn/format.py", line 80, in sprout
    result_repo = repo.clone(result, revision_id, basis)
  File "/usr/lib/python2.4/site-packages/bzrlib/decorators.py", line 38, in read_locked
    return unbound(self, *args, **kwargs)
  File "/usr/lib/python2.4/site-packages/bzrlib/repository.py", line 310, in clone
    self.copy_content_into(result, revision_id, basis)
  File "/usr/lib/python2.4/site-packages/bzrlib/repository.py", line 262, in copy_content_into
    return InterRepository.get(self, destination).copy_content(revision_id, basis)
  File "/usr/lib/python2.4/site-packages/bzrlib/decorators.py", line 51, in write_locked
    return unbound(self, *args, **kwargs)
  File "/home/david/.bazaar/plugins/svn/fetch.py", line 357, in copy_content
    svn.ra.reporter2_invoke_finish_report(reporter, reporter_baton)
  File "/usr/lib/python2.4/site-packages/libsvn/ra.py", line 703, in svn_ra_reporter2_invoke_finish_report
    return apply(_ra.svn_ra_reporter2_invoke_finish_report, args)
SubversionException: ("REPORT request failed on '/svn/scipy/!svn/vcc/default'", 175002)

return code 3

In the .bzr.log, I can see that this error appears in the following context:

svn ls -r 1300 ''trunk/Lib/xplt/gisttest2d.py''
svn ls -r 1300 ''trunk/Lib/xplt/shapetest.py''
svn ls -r 1300 ''trunk/Lib/xplt/yorick.py''
svn ls -r 1300 ''trunk/Lib/xplt/colorbar.py''
svn ls -r 1300 ''trunk/Lib/xplt/surftest4d.py''
svn ls -r 1300 ''trunk/Lib/xplt/surface.py''
svn ls -r 1300 ''trunk/Lib/xplt/graph2d.py''
saving file id map for 'svn-v2:1301@d6536bca-fef9-0310-8506-e4c0a848fbcf-branches%2fnewscipy'
unsupported file property 'svn:keywords'
unsupported file property 'svn:eol-style'
unsupported file property 'svn:keywords'
unsupported file property 'svn:eol-style'
unsupported file property 'svn:keywords'
unsupported file property 'svn:eol-style'
unsupported file property 'svn:keywords'
unsupported file property 'svn:eol-style'
unsupported file property 'svn:keywords'
unsupported file property 'svn:eol-style'
Traceback (most recent call last):
  File "/usr/lib/python2.4/site-packages/bzrlib/commands.py", line 626, in run_bzr_catch_errors
    return run_bzr(argv)
  File "/usr/lib/python2.4/site-packages/bzrlib/commands.py", line 588, in run_bzr
    ret = run(*run_argv)
  File "/usr/lib/python2.4/site-packages/bzrlib/commands.py", line 292, in run_argv_aliases
    return self.run(**all_cmd_args)
  File "/usr/lib/python2.4/site-packages/bzrlib/commands.py", line 598, in ignore_pipe
    result = func(*args, **kwargs)
  File "/home/david/.bazaar/plugins/svn/__init__.py", line 117, in run
    trees)
  File "/home/david/.bazaar/plugins/svn/convert.py", line 74, in convert_repository
    source_branch.bzrdir.sprout(target_dir, source_branch.last_revision())
  File "/home/david/.bazaar/plugins/svn/format.py", line 80, in sprout
    result_repo = repo.clone(result, revision_id, basis)
  File "/usr/lib/python2.4/site-packages/bzrlib/decorators.py", line 38, in read_locked
    return unbound(self, *args, **kwargs)
  File "/usr/lib/python2.4/site-packages/bzrlib/repository.py", line 310, in clone
    self.copy_content_into(result, revision_id, basis)
  File "/usr/lib/python2.4/site-packages/bzrlib/repository.py", line 262, in copy_content_into
    return InterRepository.get(self, destination).copy_content(revision_id, basis)
  File "/usr/lib/python2.4/site-packages/bzrlib/decorators.py", line 51, in write_locked
    return unbound(self, *args, **kwargs)
  File "/home/david/.bazaar/plugins/svn/fetch.py", line 357, in copy_content
    svn.ra.reporter2_invoke_finish_report(reporter, reporter_baton)
  File "/usr/lib/python2.4/site-packages/libsvn/ra.py", line 703, in svn_ra_reporter2_invoke_finish_report
    return apply(_ra.svn_ra_reporter2_invoke_finish_report, args)
SubversionException: ("REPORT request failed on '/svn/scipy/!svn/vcc/default'", 175002)

return code 3

Incidentally, the directory trunk/Lib/xplt was moved in the revision 1300 to trunk/Lib/sandbox according to a

svn log http://svn.scipy.org/svn/scipy/trunk/Lib/sandbox/xplt

The error takes time to reproduce (around the rev 1250), so I kept the whole log if necessary,

David

Jelmer Vernooij (jelmer)
Changed in bzr-svn:
assignee: nobody → jelmer
status: Unconfirmed → Fix Committed
Jelmer Vernooij (jelmer)
Changed in bzr-svn:
status: Fix Committed → Fix Released
To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Related questions

Remote bug watches

Bug watches keep track of this bug in other bug trackers.