switchio
switchio copied to clipboard
asyncio powered FreeSWITCH cluster control
Hi, Please remove the subscribe attribute getting below error. Traceback (most recent call last): File "/home/vivaconnect/backup_old/project/vb/fs_workers/python_files/InboundServer.py", line 3, in router = Router( TypeError: __init__() got an unexpected keyword argument 'subscribe'
Hi! I'm trying to get a variable through * .getvar() and everything ends in an error. My code: ``` @coroutine('CHANNEL_PARK') async def on_park(self, sess): sess.setvar("test_var", "test_val") print(sess.getvar("test_var")) ``` Traceback: ```...
I'm currently not actively working on this project any more, in fact I'm actually using the FreeSWITCH core team's new service [signal wire](https://github.com/signalwire/signalwire-python) for personal needs since I also don't...
Since #72 landed and we now are python 3.6+ support and working CI, we should probably at least make a new minor release? TODO: - [ ] [unreleased changelog](https://github.com/friends-of-freeswitch/switchio/blob/master/CHANGELOG.rst#changed) section...
During a port to new python and freeswitch (#72) from our new super pal @Kick1911, it was found that [one of the CDR tests](https://github.com/friends-of-freeswitch/switchio/pull/72/commits/0d2592151855bd37a388f251c7d8f9e701603ec3#diff-0f3b4c9d24610b3814ccf0a67f26b09c8b3755c211d422524e4f07d7c5f4ce0fR275) is hanging in CI. It's been...
There's really no downside and it's less moving pieces. I hate to centralize but free parallel jobs is just hard to say no to.
@arconamagi you cool with getting these changes into upstream?
@mgwilliams just got pinged by someone on the original version of the project before `asyncio` (i.e. the first evolution `switchy`) and I wondered over the to project and saw all...
By default `switchio`'s internal [event loop](https://github.com/friends-of-freeswitch/switchio/blob/master/switchio/loop.py#L55) spawns a background thread which runs an `asyncio` event loop for processing events from FS. The original reason for this was legacy (before porting...
Hi, Is it possible to originate call from my application (I mean my class with @app and @event_callback)? Maybe anybody can show me simple service based on https://switchio.readthedocs.io/en/latest/services.html which can...