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

Feature/storm new planner #250

Merged
merged 14 commits into from
Sep 26, 2013
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix building warnings
  • Loading branch information
ianoc committed Sep 23, 2013
commit ffed86444e9b586d9e01d368b2e4e0daa9951be6
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ClientStoreLaws extends Specification {
val retMap = clientStore.multiGet(keys)

def assertPresent[T](f: Future[T], comparison: T) {
assert(f.isReturn && f.get == comparison)
assert(f.isReturn && Await.result(f) == comparison)
}

"ClientStore should return a map from multiGet of the same size as the input request" in {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public static void clear(String stormId) {
private List<FixedTuple> _tuples;
private SpoutOutputCollector _collector;

@SuppressWarnings("unused")
private TopologyContext _context;
private List<FixedTuple> _serveTuples;
private Map<String, FixedTuple> _pending;
Expand Down