Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
update base ATC api endpoint path
Browse files Browse the repository at this point in the history
  • Loading branch information
GrantBirki committed Apr 6, 2023
1 parent 4002b91 commit 2f253ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/services/air_traffic_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module Services
class AirTrafficController
def initialize(logger: nil)
@log = logger || Logger.new($stdout, level: ENV.fetch("LOG_LEVEL", "INFO").upcase)
@endpoint = ENV.fetch("ATC_ENDPOINT", nil)
@endpoint = "#{ENV.fetch("ATC_ENDPOINT", nil)}/api/v1"
@jwt_token = nil
@jwt_token_raw = nil
@api_key_headers = {
Expand Down

0 comments on commit 2f253ee

Please sign in to comment.