-
Notifications
You must be signed in to change notification settings - Fork 32
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
Alpine 3.18.0 and test ruby 3.2 #659
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #659 +/- ##
==========================================
+ Coverage 74.38% 74.75% +0.37%
==========================================
Files 464 454 -10
Lines 28599 28420 -179
Branches 575 544 -31
==========================================
- Hits 21273 21246 -27
+ Misses 7237 7090 -147
+ Partials 89 84 -5
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
openc3/Gemfile
Outdated
@@ -11,3 +11,5 @@ gem 'rails', '~> 7.0.0' | |||
gem 'bootsnap', '>= 1.9.3', require: false | |||
gem 'rack-cors', '~> 2.0' | |||
gem 'tzinfo-data' | |||
# httpclient hasn't been released since 2016 so use Shopify's updated one | |||
gem 'httpclient', git: 'https://github.com/Shopify/httpclient' |
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.
Can't do this as it always requires an internet connection.
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.
We probably need to switch to Faraday.
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.
Could also use HTTP: https://github.com/httprb/http
@@ -25,7 +25,7 @@ def get_screen_list(scope: $openc3_scope) | |||
endpoint = "/openc3-api/screens" | |||
# Pass the name of the ENV variable name where we pull the actual bucket name | |||
response = $api_server.request('get', endpoint, scope: scope) | |||
if response.nil? || response.code != 200 | |||
if response.nil? || response.status != 200 |
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.
This is breaking to other users (including my current CFDP code). Can we make code/status aliases (both work?)
…ython to containers
I don't want to merge and release this quite yet since Alpine 3.18.0 is so new