Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

Commit

Permalink
fix saving clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
timsuchanek committed Feb 13, 2018
1 parent dc0f485 commit 3cb95b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cli/packages/prisma-yml/src/Cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class Cluster {
baseUrl: string,
clusterSecret?: string,
local: boolean = true,
shared: boolean = true,
shared: boolean = false,
) {
this.out = out
this.name = name
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Array [
"local": true,
"name": "cluster",
"out": Output {},
"shared": true,
"shared": false,
},
]
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ Array [
"local": true,
"name": "cluster",
"out": Output {},
"shared": true,
"shared": false,
},
]
`;
Expand Down

0 comments on commit 3cb95b7

Please sign in to comment.