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

Commit

Permalink
Remove an import
Browse files Browse the repository at this point in the history
  • Loading branch information
kocolosk committed Jun 14, 2012
1 parent 309ef1c commit 0d27d23
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fabric_view_changes.erl
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
-include_lib("couch/include/couch_db.hrl").
-include_lib("eunit/include/eunit.hrl").

-import(fabric_db_update_listener, [wait_db_updated/1, stop/1]).
-import(fabric_db_update_listener, [wait_db_updated/1]).

go(DbName, Feed, Options, Callback, Acc0) when Feed == "continuous" orelse
Feed == "longpoll" ->
Expand All @@ -47,7 +47,7 @@ go(DbName, Feed, Options, Callback, Acc0) when Feed == "continuous" orelse
UpdateListener
)
after
stop(UpdateListener)
fabric_db_update_listener:stop(UpdateListener)
end;
Error ->
Callback(Error, Acc0)
Expand Down

0 comments on commit 0d27d23

Please sign in to comment.