Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

added kafka ascoltatore #144

Merged
merged 26 commits into from
May 21, 2016
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
cbfebb3
added kafka ascoltatore
Mar 22, 2016
ed60703
added kafka install
Mar 22, 2016
19634f4
producer no longer created lazily since it is impacting travis tests
Mar 22, 2016
983440a
avoid publishing to a closed ascoltatore
Mar 22, 2016
6389c7e
use event listener to determine when the consumer has connected
fullergalway Mar 30, 2016
f249355
reworked kafka ascoltatore to create topics as required
fullergalway Mar 31, 2016
1de2ca2
removed console log message
fullergalway Mar 31, 2016
def785c
added encoding on documentation
fullergalway Mar 31, 2016
205b5b5
benign change to trigger travis build
Apr 1, 2016
48a9dde
benign change to trigger travis build
Apr 1, 2016
c6953fb
try build with node 0.12.12 which worked previously
Apr 1, 2016
39553bb
reverting change to .travis.yml
Apr 1, 2016
97f462d
try upgrading the os before testing
fullergalway Apr 1, 2016
db2e9cf
update installation before runnig tests
fullergalway Apr 1, 2016
50d56dd
update installation before runnig tests
fullergalway Apr 1, 2016
cb64b50
try newer gcc
fullergalway Apr 1, 2016
b74674f
try newer gcc
fullergalway Apr 1, 2016
8ce3274
try newer gcc
fullergalway Apr 1, 2016
ca23053
reverting .travis.yml with MONGO2.6 and 3.0 commented
fullergalway Apr 1, 2016
80be903
commenting node 0.12
fullergalway Apr 1, 2016
3c00497
Try build with node 0.12 and gcc-4.8
fullergalway Apr 6, 2016
db3a6be
reverting
fullergalway Apr 6, 2016
473e841
Update README.md
fullergalway Apr 11, 2016
42913aa
use nan 2.2.0
fullergalway Apr 11, 2016
b88b5b6
Update package.json
fullergalway Apr 11, 2016
680c7fb
Re-adding mongodb versions into travis build
fullergalway Apr 11, 2016
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
Prev Previous commit
Next Next commit
try upgrading the os before testing
  • Loading branch information
fullergalway committed Apr 1, 2016
commit 97f462d41c9884a23bbe80829c5606ef1674e088
13 changes: 13 additions & 0 deletions Vagrantfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@

Vagrant.configure(2) do |config|
config.vm.box = "boneskull/ascoltatori"
config.vm.provision "shell", inline: $shell
end
$shell = <<-CONTENTS
export DEBIAN_FRONTEND=noninteractive
MARKER_FILE="/usr/local/etc/vagrant_provision_marker"

# Update apt
apt-get update

# Upgrade everything
yes '' | apt-get -y -o DPkg::options::="--force-confdef" -o DPkg::options::="--force-confold" dist-upgrade
# Touch the marker file so we don't do this again
touch ${MARKER_FILE}
CONTENTS