Replies: 1 comment 1 reply
-
Ok... After digging into some source code, I found some clues. I suspect that the read-only mode issue is highly likely caused by version inconsistencies between the packages in my Elsa Server and Studio. The root cause was that I switched the persistent storage to PostgreSQL, which triggered a series of version downgrades. After I unified all versions to 3.1.0, the problem was resolved. below are what I changed
<PackageReference Include="Elsa" Version="3.1.0" />
<PackageReference Include="Elsa.CSharp" Version="3.1.0" />
<PackageReference Include="Elsa.EntityFrameworkCore" Version="3.1.0" />
<PackageReference Include="Elsa.EntityFrameworkCore.PostgreSql" Version="3.1.0" />
<PackageReference Include="Elsa.Identity" Version="3.1.0" />
<PackageReference Include="Elsa.Scheduling" Version="3.1.0" />
<PackageReference Include="Elsa.Workflows.Api" Version="3.1.0" />
<PackageReference Include="Elsa.Api.Client" Version="3.1.0" />
<PackageReference Include="Elsa.Studio" Version="3.1.0" />
<PackageReference Include="Elsa.Studio.Core.BlazorWasm" Version="3.1.0" />
<PackageReference Include="Elsa.Studio.Login.BlazorWasm" Version="3.1.0" /> |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am new to Elsa, and yesterday I just skimmed the documents and create a server and a studio to try something, as above it said it's read-only mode, how to turn it off?
can't find any clue in the documents...
Beta Was this translation helpful? Give feedback.
All reactions