Bug #141
Problem wile scanning 1.1.4 FSFS Backend Repository
| Status: | Closed | Start: | ||
| Priority: | Normal | Due date: | ||
| Assigned to: | - | % Done: | 0% |
|
| Category: | Indexer | |||
| Target version: | 0.6.2 Calypso | |||
Description
During a test i have observed the following problem with an SVN 1.1.4 created (FSFS) repository.
14.01.2009 21:14:28 org.tmatesoft.svn.core.internal.util.DefaultSVNDebugLogger log
SCHWERWIEGEND: DEFAULT: assert #B
14.01.2009 21:14:28 org.tmatesoft.svn.core.internal.util.DefaultSVNDebugLogger log
SCHWERWIEGEND: DEFAULT: assert #B
java.lang.Exception: assert #B
at org.tmatesoft.svn.util.SVNDebugLog.assertCondition(SVNDebugLog.java:39)
at org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner.copySourceInstructions(SVNDeltaCombiner.java:380)
at org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner.copySourceInstructions(SVNDeltaCombiner.java:352)
at org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner.combineWindows(SVNDeltaCombiner.java:290)
at org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner.addWindow(SVNDeltaCombiner.java:240)
at org.tmatesoft.svn.core.internal.io.fs.FSInputStream.getContents(FSInputStream.java:171)
at org.tmatesoft.svn.core.internal.io.fs.FSInputStream.readContents(FSInputStream.java:114)
at org.tmatesoft.svn.core.internal.io.fs.FSInputStream.read(FSInputStream.java:98)
at java.io.InputStream.read(Unknown Source)
at org.tmatesoft.svn.core.internal.io.fs.FSRepositoryUtil.copy(FSRepositoryUtil.java:105)
at org.tmatesoft.svn.core.internal.io.fs.FSRepository.getFile(FSRepository.java:222)
at com.soebes.supose.scan.document.ScanWordDocument.indexDocument(ScanWordDocument.java:58)
at com.soebes.supose.scan.FileExtensionHandler.execute(FileExtensionHandler.java:61)
at com.soebes.supose.scan.ScanRepository.indexFile(ScanRepository.java:266)
at com.soebes.supose.scan.ScanRepository.workOnChangeSet(ScanRepository.java:159)
at com.soebes.supose.scan.ScanRepository.scan(ScanRepository.java:111)
at com.soebes.supose.cli.SuposeCLI.runScan(SuposeCLI.java:151)
at com.soebes.supose.cli.SuposeCLI.main(SuposeCLI.java:101)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.simontuffs.onejar.Boot.run(Boot.java:306)
at com.simontuffs.onejar.Boot.main(Boot.java:159)
14.01.2009 21:14:28 org.tmatesoft.svn.core.internal.util.DefaultSVNDebugLogger log
SCHWERWIEGEND: DEFAULT: assert #B
14.01.2009 21:14:28 org.tmatesoft.svn.core.internal.util.DefaultSVNDebugLogger log
SCHWERWIEGEND: DEFAULT: assert #B
java.lang.Exception: assert #B
at org.tmatesoft.svn.util.SVNDebugLog.assertCondition(SVNDebugLog.java:39)
at org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner.copySourceInstructions(SVNDeltaCombiner.java:380)
at org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner.combineWindows(SVNDeltaCombiner.java:290)
at org.tmatesoft.svn.core.internal.delta.SVNDeltaCombiner.addWindow(SVNDeltaCombiner.java:240)
at org.tmatesoft.svn.core.internal.io.fs.FSInputStream.getContents(FSInputStream.java:171)
at org.tmatesoft.svn.core.internal.io.fs.FSInputStream.readContents(FSInputStream.java:114)
at org.tmatesoft.svn.core.internal.io.fs.FSInputStream.read(FSInputStream.java:98)
at java.io.InputStream.read(Unknown Source)
at org.tmatesoft.svn.core.internal.io.fs.FSRepositoryUtil.copy(FSRepositoryUtil.java:105)
at org.tmatesoft.svn.core.internal.io.fs.FSRepository.getFile(FSRepository.java:222)
at com.soebes.supose.scan.document.ScanWordDocument.indexDocument(ScanWordDocument.java:58)
at com.soebes.supose.scan.FileExtensionHandler.execute(FileExtensionHandler.java:61)
at com.soebes.supose.scan.ScanRepository.indexFile(ScanRepository.java:266)
at com.soebes.supose.scan.ScanRepository.workOnChangeSet(ScanRepository.java:159)
at com.soebes.supose.scan.ScanRepository.scan(ScanRepository.java:111)
at com.soebes.supose.cli.SuposeCLI.runScan(SuposeCLI.java:151)
at com.soebes.supose.cli.SuposeCLI.main(SuposeCLI.java:101)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.simontuffs.onejar.Boot.run(Boot.java:306)
at com.simontuffs.onejar.Boot.main(Boot.java:159).
The following code snipped causes the above exception:1 ByteArrayOutputStream baos = new ByteArrayOutputStream();
2 //This means we get the contents of the file only. No properties.
3 repository.getRepository().getFile(path, revision, null, baos);
4 ByteArrayInputStream str = new ByteArrayInputStream(baos.toByteArray());
History
Updated by Karl Heinz Marbaise 603 days ago
- Target version set to 0.6.2 Calypso