Skip to content

Commit

Permalink
Fixed dinerl:delete_table/1
Browse files Browse the repository at this point in the history
  • Loading branch information
knutin committed Jan 9, 2013
1 parent fae0c96 commit 944fcfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dinerl.erl
Expand Up @@ -67,7 +67,7 @@ create_table(Name, Key, ReadsPerSecond, WritesPerSecond, Timeout) ->
{<<"WritesPerSecond">>, WritesPerSecond}]}], Timeout). {<<"WritesPerSecond">>, WritesPerSecond}]}], Timeout).


delete_table(Name) -> delete_table(Name) ->
describe_table(Name, undefined). delete_table(Name, undefined).
delete_table(Name, Timeout) -> delete_table(Name, Timeout) ->
api(delete_table, [{<<"TableName">>, Name}], Timeout). api(delete_table, [{<<"TableName">>, Name}], Timeout).


Expand Down

0 comments on commit 944fcfa

Please sign in to comment.