Skip to content

Commit

Permalink
add support for sticky query (#452)
Browse files Browse the repository at this point in the history
* add support for sticky query
  • Loading branch information
wxing1292 authored Dec 11, 2017
1 parent fffdc7e commit 9314ff5
Show file tree
Hide file tree
Showing 8 changed files with 549 additions and 303 deletions.
4 changes: 2 additions & 2 deletions .gen/go/shared/idl.go

Large diffs are not rendered by default.

64 changes: 62 additions & 2 deletions .gen/go/shared/types.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ test: vendor/glide.updated bins
@rm -f test
@rm -f test.log
@for dir in $(TEST_DIRS); do \
go test -coverprofile=$@ "$$dir" | tee -a test.log; \
go test -race -coverprofile=$@ "$$dir" | tee -a test.log; \
done;

cover_profile: clean bins_nothrift
@mkdir -p $(BUILD)
@echo "mode: atomic" > $(BUILD)/cover.out

@echo Running integration test
@mkdir -p $(BUILD)/$(INTEG_TEST_DIR)
@mkdir -p $(BUILD)/$(INTEG_TEST_DIR)
@time go test $(INTEG_TEST_ROOT) $(TEST_ARG) $(GOCOVERPKG_ARG) -coverprofile=$(BUILD)/$(INTEG_TEST_DIR)/coverage.out || exit 1;
@cat $(BUILD)/$(INTEG_TEST_DIR)/coverage.out | grep -v "mode: atomic" >> $(BUILD)/cover.out

Expand Down
Loading

0 comments on commit 9314ff5

Please sign in to comment.