Issue 220 in glassdb: extent0.seaside.dbf contains reference to repository on GemStone build machine

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Issue 220 in glassdb: extent0.seaside.dbf contains reference to repository on GemStone build machine

glassdb
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=220

For 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.


Reply | Threaded
Open this post in threaded view
|

Re: Issue 220 in glassdb: extent0.seaside.dbf contains reference to repository on GemStone build machine

glassdb
Updates:
        Owner: [hidden email]
        Labels: Milestone-1.0-beta.8.6

Comment #1 on 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=220

I'll update the bootstrap code to remove the file directories as part of  
the bootstrap process...

Reply | Threaded
Open this post in threaded view
|

Re: Issue 220 in glassdb: extent0.seaside.dbf contains reference to repository on GemStone build machine

glassdb
Updates:
        Status: Fixed
        Labels: Fixed-1.0-beta.8.7

Comment #2 on 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=220

Replacing the workingCopy repositoryGroup with a fresh repository group  
while adding in the desired repositories...

Fix will take effect in builds based on GLASS 1.0-beta.8.7 or later.

Name: Core.v3-DaleHenrichs.55
Author: DaleHenrichs
Time: 03/09/2011, 12:41:47
UUID: acae31bb-0ac9-44d3-a983-f071df7b76ff
Ancestors: Core.v3-DaleHenrichs.54