fly.io-rails 0.1.18-x86-linux → 0.1.19-x86-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08da2b642dec92633b4746a9bfd15960c5f7f08bf8ff7f357e8817e0e9363d39'
4
- data.tar.gz: 2387302a9e1e0282204be060de1de5fb777ebf89b88dbdf1ad1bcec19318cd30
3
+ metadata.gz: d56497d97c6640bc7cdbc410ebd1ec3173a1e0a76d748eae927d2967b90a4756
4
+ data.tar.gz: 19588353e1daab1113e57b87fd1316bd90f7346bd76a65eff952f4a5e3881265
5
5
  SHA512:
6
- metadata.gz: 9ea9aac26971910bc8d8d3ade160a3ca8d324248dcb4e6c961322e79ce8981828d5b5cb710e37dd5907a26a859a7b17f04bd3616e657124e8ba31ad9022736b0
7
- data.tar.gz: 884bb6749dc51dc068f51647abbb20b4bd3aa5214cca3fd0a86aa61066a0e350191f03bae89c0036c1e84d391aef2dd1dff6ee90007342562c5082bc77a34d39
6
+ metadata.gz: bed48756018de9020b89d8328d851d2083aaa39675afe1be1f5739fc176befbda7e4060c1006fa93206d3cad4894b9d1d14c46d80f94ac0449fa3f7179f4c0c8
7
+ data.tar.gz: e8e01cb750655558081d133d400fc74fe463d632d9b40eb0b57d22ff5c17cca0ce7db44a00500093b11e3062ed3defaadf18da0ac6f9a124f0fbfbe9fd379ad5
@@ -365,13 +365,15 @@ module Fly
365
365
 
366
366
  # stop previous instances - list will fail on first run
367
367
  stdout, stderr, status = Open3.capture3('fly machines list --json')
368
+ existing_machines = []
368
369
  unless stdout.empty?
369
- JSON.parse(stdout).each do |list|
370
- next if list['id'] == machine or list['state'] == 'destroyed'
371
- cmd = "fly machines remove --force #{list['id']}"
372
- say_status :run, cmd
373
- system cmd
374
- end
370
+ JSON.parse(stdout).each do |list|
371
+ existing_machines << list['name']
372
+ next if list['id'] == machine or list['state'] == 'destroyed'
373
+ cmd = "fly machines remove --force #{list['id']}"
374
+ say_status :run, cmd
375
+ system cmd
376
+ end
375
377
  end
376
378
 
377
379
  # configure sqlite3 (can be overridden by fly.toml)
@@ -410,7 +412,10 @@ module Fly
410
412
  options = {region: @region, config: config}
411
413
  say_status :fly, "start #{app}"
412
414
  if not toml['processes'] or toml['processes'].empty?
413
- options[:name] = "#{app}-machine",
415
+ options[:name] = "#{app}-machine"
416
+ taken = existing_machines.find {|name| name.start_with? options[:name]}
417
+ options[:name] = taken == options[:name] ? "#{taken}-2" : taken.next if taken
418
+
414
419
  start = Fly::Machines.create_and_start_machine(app, options)
415
420
  machines['app'] = start[:id]
416
421
  else
@@ -418,11 +423,14 @@ module Fly
418
423
  config[:env]['NATS_SERVER'] = 'localhost'
419
424
  toml['processes'].each do |name, entrypoint|
420
425
  options[:name] = "#{app}-machine-#{name}"
426
+ taken = existing_machines.find {|name| name.start_with? options[:name]}
427
+ options[:name] = taken == options[:name] ? "#{taken}-2" : taken.next if taken
428
+
421
429
  config[:env]['SERVER_COMMAND'] = entrypoint
422
430
  start = Fly::Machines.create_and_start_machine(app, options)
423
431
 
424
432
  if start['error']
425
- STDERR.puts "ERROR: #{start.error}"
433
+ STDERR.puts "ERROR: #{start['error']}"
426
434
  exit 1
427
435
  end
428
436
 
@@ -1,3 +1,3 @@
1
1
  module Fly_io
2
- VERSION = '0.1.18'
2
+ VERSION = '0.1.19'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fly.io-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.18
4
+ version: 0.1.19
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Sam Ruby
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-10-24 00:00:00.000000000 Z
11
+ date: 2022-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fly-ruby