Status: Accepted
Owner: ----
Labels: Type-Defect Priority-Medium GLASS-Server Version-1.0-beta.8
New issue 220 by
[hidden email]: extent0.seaside.dbf contains
reference to repository on GemStone build machine
http://code.google.com/p/glassdb/issues/detail?id=220For the most part, inaccessible repositories are silently ignored, but
because I have /export/toronto3 as a automount directory, the system will
attempt to find it and the timeout on failure causes very long delays for
almost every operation.
The following script removes references to this repository.
| repository |
repository := MCRepositoryGroup default repositories
detect: [:each |
(each isKindOf: MCServerDirectoryRepository) and: [
each directory pathString includesString: 'buildgss']]
ifNone: [^false].
MCWorkingCopy allManagers do: [:each |
each repositoryGroup removeRepository: repository.
].
MCRepositoryGroup default removeRepository: repository.
^true.