This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# matthew ragan | matthewragan.com | |
import os | |
import signal | |
# first we need to find our process ID | |
# which we can grab from the dictionary | |
# we put into storage | |
pid = parent().fetch('other_app')['app_id'] | |
# next we can kill this process based | |
# only on its process id | |
os.kill(pid, signal.SIGTERM) | |
parent().unstore("*") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment