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

Feature/dynamo store #221

Open
wants to merge 31 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 19 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
44f165e
Added AWS sign func for dynamodb calls
jrconlin Jan 17, 2015
c9b00e5
Merge branch 'dev' into feature/dynamo_store
jrconlin Jan 21, 2015
dac9d60
Merge remote-tracking branch 'mozsvc/dev' into feature/dynamo_store
jrconlin Jan 27, 2015
12e1ced
Merge branch 'dev' of github.com:mozilla-services/pushgo into feature…
jrconlin Jan 27, 2015
57aabe3
Added test for AWS sig
jrconlin Jan 27, 2015
821854c
added sig cache table.
jrconlin Jan 27, 2015
a4b59c6
nightly
jrconlin Jan 29, 2015
d2f425f
Switching to goamz
jrconlin Jan 29, 2015
1e1e157
Merge branch 'dev' of github.com:mozilla-services/pushgo into feature…
jrconlin Jan 29, 2015
b35aeb0
resolve merge clashes
jrconlin Jan 29, 2015
031ba83
Merge branch 'dev' of github.com:mozilla-services/pushgo into feature…
jrconlin Jan 30, 2015
b7b4521
Added dynamodb
jrconlin Jan 31, 2015
b14c955
Added test cases for dynamo store
jrconlin Feb 4, 2015
7d0f9d8
Merge branch 'dev' of github.com:mozilla-services/pushgo into feature…
jrconlin Feb 4, 2015
6897694
Update Godeps to vlock aws libs
jrconlin Feb 4, 2015
b093840
Move goamz repo to mine pending patch
jrconlin Feb 4, 2015
5e13072
Updated Godeps to point to new head
jrconlin Feb 4, 2015
bf6ae5d
Test cleanup
jrconlin Feb 4, 2015
098b62c
Switch back to goamz libraries
jrconlin Feb 9, 2015
52c8dec
Merge branch 'dev' of github.com:mozilla-services/pushgo into feature…
jrconlin Feb 23, 2015
89b22a7
PR fixes
jrconlin Mar 4, 2015
5c05918
Added comment why I'm not using ConditionalUpdate
jrconlin Mar 4, 2015
ac91039
Nightly checkin -- broken
jrconlin Mar 7, 2015
71b5b4f
use new dynamodb (probably broken)
jrconlin Mar 10, 2015
a11ae05
Yay! passes smoke test, need units
jrconlin Mar 11, 2015
ba18c2c
Fixed bulk (test in progress)
jrconlin Mar 11, 2015
b351fa4
Adding unit tests
jrconlin Mar 12, 2015
26d54c5
Merge branch 'dev' of github.com:mozilla-services/pushgo into feature…
jrconlin Mar 12, 2015
d0012a9
Added changelog comment
jrconlin Mar 12, 2015
f0397ec
Fix failing gomock tests for pinger.
jrconlin Mar 12, 2015
a8475d2
Comment cleanup
jrconlin Mar 13, 2015
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
3 changes: 2 additions & 1 deletion Godeps
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ github.com/ianoshen/gomc 7b9f299f292d3dd707fe2749d966968c9bf1e128
github.com/kitcambridge/envconf fdc1968532255bdb56182329cdaa1e5b9aa6a6ac
github.com/smartystreets/goconvey 8298bc7d36389ffd3e57b85d9797850d8c2382a9
github.com/jacobsa/oglematchers 4fc24f97b5b74022c2a3f4ca7eed57ca29083d3e

github.com/goamz/goamz/aws 2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7
github.com/goamz/goamz/dynamodb 2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7
# Installable packages.
github.com/gogo/protobuf/... d59ce9ecb817e6fbca932115f03520207f5a8a07
github.com/glycerine/go-capnproto/... bcaa96eba53bcffef7006dd987728357995e18f6
Expand Down
9 changes: 9 additions & 0 deletions config.sample.toml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,15 @@ type = "none"
#handle_timeout = 5s
# The key prefix for proprietary pings.
#prop_prefix = "_pc-"
#
# DynamoDB config
#[storage]
#tablename="simplepush"
#region="us-west-1"
#read_cap_units=1
#write_cap_units=1
#accesskey="YourAccessKey"
#secret="YourAccessSecret"

[router]
# Default router to use, the rest of the options assume the broadcast
Expand Down
Loading