Skip to content

Commit

Permalink
Shared mode mutex is now global
Browse files Browse the repository at this point in the history
  • Loading branch information
lbnascimento committed Apr 27, 2020
1 parent ad615d8 commit 5f04454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LiteDB/Client/Shared/SharedEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public SharedEngine(EngineSettings settings)

try
{
_mutex = new Mutex(false, name + ".Mutex");
_mutex = new Mutex(false, "Global\\" + name + ".Mutex");
}
catch(NotSupportedException ex)
{
Expand Down

0 comments on commit 5f04454

Please sign in to comment.