You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For information (minor thing), in the ambient_sound neuron, the modification of the pid.txt file works only if we use the absolute path of the file. This absolute path is used everywhere except in clean_pid_file() function. It doesn't matter for the operation but it lets the last used pid in the file.
It just need to change the 277 and 278 lines:
try:
with open(pid_file_path, "w") as file_open:
with
absolute_pid_file_path = SoundDatabase.get_neuron_path() + os.sep + pid_file_path
try:
with open(absolute_pid_file_path, "w") as file_open:
The text was updated successfully, but these errors were encountered:
For information (minor thing), in the ambient_sound neuron, the modification of the pid.txt file works only if we use the absolute path of the file. This absolute path is used everywhere except in clean_pid_file() function. It doesn't matter for the operation but it lets the last used pid in the file.
It just need to change the 277 and 278 lines:
with
The text was updated successfully, but these errors were encountered: