Skip to content

Commit

Permalink
add write concern default values
Browse files Browse the repository at this point in the history
  • Loading branch information
xdg committed Sep 8, 2014
1 parent 895ee7f commit ae22e2a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/MongoDB/WriteConcern.pm
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,14 @@ has w => (
is => 'ro',
isa => 'Str',
predicate => '_has_w',
default => 1,
);

has wtimeout => (
is => 'ro',
isa => 'Num',
predicate => '_has_wtimeout',
default => 1000,
);

has j => (
Expand Down

0 comments on commit ae22e2a

Please sign in to comment.