fix context on CQE

This commit is contained in:
fjy 2014-04-07 14:36:13 -07:00
parent bae0fdf936
commit 6a26f7684f
1 changed files with 1 additions and 1 deletions

View File

@ -83,7 +83,7 @@ public class ChainedExecutionQueryRunner<T> implements QueryRunner<T>
@Override
public Sequence<T> run(final Query<T> query)
{
final int priority = query.getContextValue("priority", 0);
final int priority = query.getContextPriority(0);
return new BaseSequence<T, Iterator<T>>(
new BaseSequence.IteratorMaker<T, Iterator<T>>()