v3.0.3
“Assembly already loaded” error after upgrade to v3.0.3
Problem:
After upgrading an existing Web application and database, the “Isolated” column in the “Agent” table has a default value of 0 in stead of 1.
Solution:
Run following query on the database after an upgrade:
UPDATE [dbo].[Agent]
SET [Isolated] = 1
On this page