Skip to content

Commit

Permalink
Merge branch 'master' into ml/countvectorizer
Browse files Browse the repository at this point in the history
  • Loading branch information
GoEddie authored Aug 12, 2020
2 parents 73db52b + 61cfeb5 commit a766146
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -367,3 +367,6 @@ hs_err_pid*

# The target folder contains the output of building
**/target/**

# F# vs code
.ionide/
Binary file removed .ionide/symbolCache.db
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ internal BroadcastVariables Process(Stream stream)
else
{
string path = SerDe.ReadString(stream);
using FileStream fStream = File.Open(path, FileMode.Open, FileAccess.Read);
using FileStream fStream =
File.Open(path, FileMode.Open, FileAccess.Read, FileShare.Read);
object value = formatter.Deserialize(fStream);
BroadcastRegistry.Add(bid, value);
}
Expand Down

0 comments on commit a766146

Please sign in to comment.