Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pm2_io_apm_python/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Config:
version = "0.0.1"
node = ""

def __init__(self, public, private, name, node = "api.cloud.pm2.io"):
def __init__(self, public, private, name, node = "https://api.cloud.pm2.io"):
self.publicKey = public
self.privateKey = private
self.name = name
Expand Down
2 changes: 1 addition & 1 deletion pm2_io_apm_python/pm2io.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def start(self):
threading.Thread(target=self.transporter.connect).start()

def stop(self):
# stop threads
pass

def statusInterval(self, config, t, m, a):
while (True):
Expand Down