Skip to content

Instantly share code, notes, and snippets.

@Vagabond
Created April 11, 2011 20:22
Show Gist options
  • Save Vagabond/914246 to your computer and use it in GitHub Desktop.
Save Vagabond/914246 to your computer and use it in GitHub Desktop.
get_default_rw_val(Type, BucketProps) ->
case proplists:get_value(Type, BucketProps, default) of
default ->
{ok, DefaultProps} = application:get_env(riak_core, default_bucket_props),
proplists:get_value(Type, DefaultProps, error);
Val -> Val
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment