micw
micw
The schema version should be stored along with the database, so the best way to do it is to store it into a custom table. This table can also be...
There are 2 more findings: 1. `my_process_a` sends some events to `my_process_b`. `my_process_b` does then some stuff and sends back an event to `my_process_a`. In the error case, `my_process_b`is running...
To verify/exclude 2., I changed the synch event to asynch. Now the process is stopped correctly before going to sleep - but the behavior remains the same. Process get somehow...
I have enabled process debugging and saw that the process is actually exited. Since I have ensured that our code does not exit the process, I searched the contiki-ng codebase...
I found the issue. We have defined and allocated custom events as described in the wiki: ``` struct custom_events_t { process_event_t custom_event1; process_event_t custom_event2; process_event_t custom_event3; process_event_t custom_event4; }; ```...
I have changed the title. I think the following needs to be checked: 1. Docs, https://docs.contiki-ng.org/en/develop/doc/programming/Processes-and-events.html#user-defined-events Make clear when to allocate the event ID. Should it be when the process...
@alexrayne Clear to me _after_ I investigated the issue. But from the docs, the examples and the code comments, I'd say I used it as the framework suggests. Edit: we...
The same Issue might also be triggered by contiki-ng's internal stuff. Examples: * sensors.c * tcpip.c Each allocates the event ID when the process is started. So also when I...
@rbubley Your script is amazing. I had `brctl setageing br-lan 3` as a workaround running which worked but still had a lag of 3 s. With your script, the wrong...
I don't think that trafik 2 can replace nginx fully since besides SSL we also have STARTTLS which needs to be supported at application level while SSL is at transport...