Comment 52 for bug 1283003

Revision history for this message
David Henningsson (diwic) wrote : Re: [Bluetooth + 14.04] Bluetooth headsets are not working after last couple of updates

@Colum, thanks - from the log we can see that module-bluetooth-discover is unloaded manually. The program unloading it is "python2.7" which unfortunately does not tell us exactly from where this comes, just that it is some software written in python...

May 13 19:58:09 gaynor-F1-22PTV1 pulseaudio[2501]: [pulseaudio] module-augment-properties.c: Looking for .desktop file for python2.7
May 13 19:58:09 gaynor-F1-22PTV1 pulseaudio[2501]: [pulseaudio] module.c: Unloading "module-bluetooth-discover" (index: #8).
May 13 19:58:09 gaynor-F1-22PTV1 pulseaudio[2501]: [pulseaudio] module.c: Unloaded "module-bluetooth-discover" (index: #8).

However, the answer is not far away. Here's what I found in blueman/plugins/applet/PulseAudio.py:

 for k, v in modules.iteritems():
                                if v["name"] == "module-bluetooth-discover":
                                        pa_utils.UnloadModule(k, lambda x: dprint("Unload module-bluetooth-discover result", x))

...so if blueman unloads module-bluetooth-discover, it's not PulseAudio's fault if it does not find new devices. Reassigning to Blueman.