cycls 0.0.2.14__tar.gz → 0.0.2.15__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cycls
3
- Version: 0.0.2.14
3
+ Version: 0.0.2.15
4
4
  Summary: Cycls SDK
5
5
  Author: Mohammed Jamal
6
6
  Author-email: mj@cycls.com
@@ -106,10 +106,11 @@ class Cycls:
106
106
  print("✦/✧","development mode")
107
107
  # print("✦/✧",f"url {self.url}")
108
108
  register(list(self.apps.keys()), self.network, self.url+"/gateway", "dev")
109
+ t1 = asyncio.create_task(create_ssh_tunnel(f"{self.subdomain}-cycls", self.port))
109
110
 
110
- t1 = asyncio.create_task(create_ssh_tunnel(f"{self.subdomain}-cycls", self.port))
111
111
  t2 = asyncio.create_task(run_server(self.server,self.port))
112
- await asyncio.gather(t1, t2) if not prod else asyncio.gather(t2)
112
+
113
+ await asyncio.gather(t1, t2) if not prod else await asyncio.gather(t2)
113
114
 
114
115
  Text = StreamingResponse
115
116
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "cycls"
3
- version = "0.0.2.14"
3
+ version = "0.0.2.15"
4
4
 
5
5
  packages = [{ include = "cycls" }]
6
6
  description = "Cycls SDK"
File without changes
File without changes
File without changes