Skip to content

Commit

Permalink
update nuget packages
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriktsarpalis committed May 31, 2016
1 parent abc95d2 commit 79862d4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -28,20 +28,20 @@ NUGET
MathNet.Numerics (3.7.1)
MathNet.Numerics.MKL.Win-x64 (1.8)
MathNet.Numerics (>= 2.4)
MBrace.Core (1.2.3)
MBrace.Flow (1.2.3)
MBrace.Core (1.2.4)
MBrace.Flow (1.2.4)
FSharp.Core (>= 3.0)
MBrace.Core (1.2.3)
MBrace.Core (1.2.4)
Streams (>= 0.4 < 0.5)
MBrace.Runtime (1.2.3)
MBrace.Runtime (1.2.4)
FsPickler (>= 2.1 < 2.2)
FsPickler.Json (>= 2.1 < 2.2)
MBrace.Core (1.2.3)
Vagabond (>= 0.12.11 < 0.13)
MBrace.Tests (1.2.3)
MBrace.Core (1.2.4)
Vagabond (>= 0.13 < 0.14)
MBrace.Tests (1.2.4)
FsCheck (>= 2.0.1)
MBrace.Core (1.2.3)
MBrace.Flow (1.2.3)
MBrace.Core (1.2.4)
MBrace.Flow (1.2.4)
NUnit (>= 2.6 < 3.0)
Microsoft.Owin (3.0.1) - version_in_path: true
Owin (>= 1.0)
Expand All @@ -55,15 +55,15 @@ NUGET
Owin (1.0) - version_in_path: true
Streams (0.4.1)
Unquote (3.1.1)
Vagabond (0.12.11)
Vagabond (0.13)
FsPickler (>= 2.1 < 3.0)
Mono.Cecil (>= 0.9.6.1 < 0.9.7)

GROUP Build
NUGET
remote: https://www.nuget.org/api/v2
specs:
FAKE (4.27)
FAKE (4.28)
Microsoft.Bcl (1.1.10) - framework: net10, net11, net20, net30, net35, net40, net40-full
Microsoft.Bcl.Build (>= 1.0.14)
Microsoft.Bcl.Build (1.0.21) - import_targets: false, framework: net10, net11, net20, net30, net35, net40, net40-full
Expand All @@ -77,5 +77,5 @@ NUGET
GITHUB
remote: fsharp/FAKE
specs:
modules/Octokit/Octokit.fsx (8c077f35f8cd0350485109ddd1810dafe9885d1a)
modules/Octokit/Octokit.fsx (60acb2f035cb39f2bd40a6c58a4de10d915da248)
Octokit
4 changes: 2 additions & 2 deletions src/MBrace.AWS/Runtime/ClusterManager.fs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ type ClusterManager =

let cloudValueProvider =
let fs = fileStore :> ICloudFileStore
let prefix = fs.Combine(fs.DefaultDirectory, "cloudValue")
let prefix = fs.Combine(clusterId.RuntimeS3BucketName, "cloudValue")
let cloudValueStore = fs.WithDefaultDirectory prefix
let mkCache () = ProcessConfiguration.ObjectCache
let mkLocalCachingStore () = (ProcessConfiguration.FileStore :> ICloudFileStore).WithDefaultDirectory "cloudValueCache"
Expand Down Expand Up @@ -158,7 +158,7 @@ type ClusterManager =
logger.LogInfo "Creating assembly manager"
let assemblyManager =
let fs = fileStore :> ICloudFileStore
let vagabondPrefix = fs.Combine(fs.DefaultDirectory, "vagabond")
let vagabondPrefix = fs.Combine(clusterId.RuntimeS3BucketName, "vagabond")
let ignoredAssemblies = [| Assembly.GetExecutingAssembly() |]
let config = StoreAssemblyManagerConfiguration.Create(fileStore, serializer, container = vagabondPrefix, ignoredAssemblies = ignoredAssemblies, compressAssemblies = true)
StoreAssemblyManager.Create(config, localLogger = logger)
Expand Down

0 comments on commit 79862d4

Please sign in to comment.