Store question and Bug fix ?

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

Store question and Bug fix ?

Mark Pirogovsky-3
Hello all,

This morning I was loading new PKG. from store repository and came
across a MNU walkback.

the problem was in the method
Store.Method>>loadAsNewWithCommittingSource: commitSourceStream.

for some reason the method category came up as nil, so I had to patch it
as follow ,just to get staff loaded:
.....
        protocol := self protocolName ifNil: ['none' asSymbol]
                                ifNotNil: [:ea | ea asSymbol].

..................................

My question is for the Store experts:

Q. SHould I be concerned that one of the methods in the store repository
is without the category name i.e.  Does it indicate some other
consistency problem in our code repository?

and if the answer is true then my fix is masking some other problems ?


My environment: VW 7.3.1, store is using the postgreSQL 8, and my store
setup is not to use "fast comparison".

Thanks,

--Mark