carlosporta

Results 7 issues of carlosporta

I am trying to detect double clicks and single clicks on buttons. function App() { const buttonRef = useRef(); const [message, setMessage] = useState(); const [ws, setWS] = useState(); useEffect(()...

### First Check - [X] I added a very descriptive title to this issue. - [X] I used the GitHub search to find a similar issue and didn't find it....

question

Hello, Do you have any plans to add distributed execution? Something like: ```python @app.task(daily, queue: RedbirdQueue | RabbitMQQueue | RedisQueue | InMemoryQueue | SQLALchemyQueue) def do_daily(): ... worker = RocketryWorker(queues=[my_queues])...

enhancement

Like said on the readme file, the linux driver does not has a GUI. How can I configure it, using command line?

I am trying to delete a task, but Rocketry returns a KeyError. ```python import asyncio from rocketry import Rocketry from rocketry.conds import secondly app = Rocketry() @app.task(secondly, name='foo') async def...

bug
good first issue

As discussed in #130, here is the fix. I removed the set session as default, so the test `test_remove` stopped passing. Finally, I changed the function `remove_task` to not use...

I am trying to kill the server and the rocketry app. But when I press ctrl+c only the server is killed. I am already using the custom class provided.