-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix SNS throttling error finding SNS topics #96
Open
ianoxley
wants to merge
28
commits into
master
Choose a base branch
from
find_topics
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 14 commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
6bb189d
Sort dependencies
ianoxley edf135b
Update Dockerfile and docker-compose.yml
ianoxley 8d7440a
Lock pry-byebug for older Ruby versions in Gemfile
ianoxley ec40f0f
Remove rake version lock
ianoxley 2adaab6
Fix Rubocop warnings
ianoxley 123f0af
Ignore Ctags files
ianoxley 74f90d2
Replace double with single quotes
ianoxley 5fe2d19
Add frozen_string_literal comment to gemspec
ianoxley 1887d73
Remove bundler version lock from dev dependencies
ianoxley fb342e0
Add required_ruby_version
ianoxley fbfcd6b
Replace client #list_topics with resource #topics
ianoxley 148d3f6
Update formatting
ianoxley 803e190
Update EVENTQ_VERSION to 3.3.1
ianoxley 7b36b72
Fix rspec.yml workflow after Dockerfile changes
ianoxley dae4e9e
Update workflow to use docker-compose run
ianoxley 44969fe
Update to latest codeclimate-action
ianoxley 5683ef0
Remove prefix
ianoxley bcd6e89
Add verifyDownload
ianoxley 8f9944f
Revert "Update workflow to use docker-compose run"
ianoxley db02c3f
Add spec to rspec command
ianoxley 56de7b2
Update checkout action to v3.5.3
ianoxley 68c96de
Update how Resource is created
ianoxley e008bed
Revert "Update how Resource is created"
ianoxley 53c3d74
Allow resource to be injected via the constructor
ianoxley 030bdae
Remove puts statement from spec_helper.rb
ianoxley 9f16555
Remove empty before each block
ianoxley b94ce1b
Sort env vars in docker-compose.yml
ianoxley fd4c016
Remove redis ports in docker-compose.yml
ianoxley File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,6 @@ | |
process_file.txt | ||
spec_run.txt | ||
/utilities/plot_results | ||
|
||
tags | ||
*.tags |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM ruby:2.4-alpine3.8 | ||
|
||
RUN apk add --update ca-certificates bash && update-ca-certificates && rm -rf /var/cache/apk/* | ||
RUN apk update && apk add --no-cache build-base | ||
|
||
RUN set -ex && apk add --no-cache --virtual .gem-builddeps ruby-dev build-base libressl-dev | ||
|
||
ENV APP_HOME /src | ||
RUN mkdir -p $APP_HOME | ||
WORKDIR $APP_HOME | ||
|
||
COPY . $APP_HOME | ||
RUN bundle install | ||
RUN apk del .gem-builddeps | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.3.0 | ||
3.3.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
|
||
# Specify your gem's dependencies in eventq.gemspec | ||
gemspec | ||
|
||
|
||
gem 'json', '2.1.0' | ||
gem 'redlock' | ||
|
||
platforms :ruby do | ||
gem 'bunny' | ||
gem 'oj', '3.6.10' | ||
gem 'openssl', '2.1.1' | ||
gem 'bunny' | ||
end | ||
|
||
group :development, :test do | ||
gem 'pry-byebug', '< 3.10' # 3.10.0 requires Ruby >= 2.7 | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is
&& exit
here to try and control the exit code?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know TBH 🤷♂️
I did change this to use
docker-compose run
in dae4e9e instead.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah yeah, it would have been due to using docker exec, to exit the container.