Skip to content

Commit

Permalink
fix: update accordingly
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bisonai committed Apr 11, 2024
1 parent c13bd74 commit 43f0a9e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ const default_fetcher_host = production
const default_fetcher_port = production ? '4040' : '3001'

const default_listener_host = production
? 'http://orakl-aggregator-listener.orakl.svc.cluster.local'
? 'http://aggregator-listener.orakl.svc.cluster.local'
: 'http://localhost'
const default_listener_port = production ? '4000' : '4000'

const default_worker_host = production
? 'http://orakl-aggregator-worker.orakl.svc.cluster.local'
? 'http://aggregator-worker.orakl.svc.cluster.local'
: 'http://localhost'
const default_worker_port = production ? '5000' : '5001'

const default_reporter_host = production
? 'http://orakl-aggregator-reporter.orakl.svc.cluster.local'
? 'http://aggregator-reporter.orakl.svc.cluster.local'
: 'http://localhost'
const default_reporter_port = production ? '6000' : '6000'

Expand Down

0 comments on commit 43f0a9e

Please sign in to comment.