From f9bbf0380e560bcae387eaa268e3e7d0b936d01b Mon Sep 17 00:00:00 2001 From: James Greenhill Date: Mon, 25 Mar 2024 17:04:57 -0700 Subject: [PATCH] somewhat important to create the dns record here hah --- bin/hobby-ci.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/hobby-ci.py b/bin/hobby-ci.py index cbe646b06c781..f02efcedd6f39 100644 --- a/bin/hobby-ci.py +++ b/bin/hobby-ci.py @@ -210,6 +210,7 @@ def export_droplet(self): def ensure_droplet(self, ssh_enabled=True): self.create_droplet(ssh_enabled=ssh_enabled) self.block_until_droplet_is_started() + self.create_dns_entry_for_instance() self.export_droplet()