Skip to content

Commit

Permalink
fix coordinator leader proxy in druid console server (#17)
Browse files Browse the repository at this point in the history
* fix coordinator leader proxy in druid console server
Druid coordinator leader API includes scheme after [this change](apache/druid@2ecebb3#diff-2ed9a00e63ba80d914302e0f4b2a18b4R74). This fix handles that case instead of breaking and loading nothing

* build fix: tested with node 6 and 8 lts versions, updated dependencies as necessary, still a couple of failing tests locally

* remove unnecessary line

* simplify

* use zk stuff from locators package instead of internal zookeeperLocator.js

* i guess this gets added too?

* update express from 3.x to 4.x, some other npm dependencies, mild refactor of server code

* formatting

* cleanup

* fix tests after were broken by c96565b and never updated

* run unit-tests in travis with headless chrome, junit output

* travis fix

* another travis fix, sudo required due to travis-ci/travis-ci#8836
  • Loading branch information
clintropolis authored and gianm committed Jan 26, 2018
1 parent 232c92f commit 8bb88d2
Show file tree
Hide file tree
Showing 27 changed files with 10,965 additions and 2,602 deletions.
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
language: java
sudo: false
sudo: required
dist: trusty
addons:
chrome: stable
before_install:
- # start your web application and listen on `localhost`
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222http://localhost &
5 changes: 3 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@
"ng-clip": "~0.1.3",
"moment": "~2.9.0",
"walltime-js": "~0.2.0",
"jQuery": "~2.1.4",
"jQuery": "~3",
"angular-mocks": "~1.3",
"ng-csv": "~0.1.0",
"angular-bootstrap": "~0.12",
"bootstrap": "~3.1.1",
"font-awesome": "~4.2",
"angular-ui-router": "~0.2",
"angular-local-storage": "~0.1.5"
"angular-local-storage": "~0.1.5",
"angular-sanitize": "~1.3"
},
"devDependencies": {},
"private": true,
Expand Down
Loading

0 comments on commit 8bb88d2

Please sign in to comment.