ronytigo

Results 5 issues of ronytigo

I ran this on Ubuntu: ``` sudo apt-get install librabbitmq-dev git clone https://github.com/alanxz/SimpleAmqpClient.git cd SimpleAmqpClient mkdir simpleamqpclient-build cd simpleamqpclient-build cmake .. cmake --build . ``` then in my CMakeLists.txt file...

This is my code: ``` #include #include #include #include #include #include "../lib/libplctag.h" #include "utils.h" #include #include #include #include #include #include int64_t util_time_ms(void) { struct timeval tv; gettimeofday(&tv, NULL); return ((int64_t)tv.tv_sec...

question
performance

**Pre-checks** - [x] running latest version - [x] enabled logging - [x] consulted the [docs](https://pycomm3.readthedocs.io/en/latest/) **Description** time received ignores the timezone of the plc. For example, the plc timezone is...

bug

my code from old `python-opcua` library: ``` ... // got asyncua.ua.uatypes.NodeId node_id and str url as params node = client.get_node(node_id) sub = client.create_subscription(1000, url) handle = sub.subscribe_data_change(node, queuesize=queue_size) // I...

when I call :8086/query?q=show databases I get only the databases that start with a capital letter.

question
can-not-reproduce