Re: enroll Proton and Dispatch in Packit-as-a-Service CI offering from Fedora

2025-01-13 Thread Jiri Daněk
On Fri, Jan 12, 2024 at 5:11 PM Jiri Daněk wrote: > > I'd like to enable Packit-as-a-Service ( https://github.com/marketplace/packit-as-a-service) for Qpid Proton and Qpid Dispatch GitHub repositories, so that every new PR gets tested on Fedora infrastructure (latest released Fedora

[RESULT][VOTE] enroll Proton and Dispatch in Packit-as-a-Service CI offering from Fedora

2024-01-15 Thread Jiri Daněk
There were 5 binding +1 votes, and no other votes received. The vote has passed. I will inform ASF infra that work on https://issues.apache.org/jira/browse/INFRA-25349 can proceed. Thanks,

Re: [VOTE] enroll Proton and Dispatch in Packit-as-a-Service CI offering from Fedora

2024-01-12 Thread Jiri Daněk
+1 On Fri, Jan 12, 2024, 17:11 Jiri Daněk wrote: > I'd like to enable Packit-as-a-Service ( > https://github.com/marketplace/packit-as-a-service) for Qpid Proton and > Qpid Dispatch GitHub repositories, so that every new PR gets tested on > Fedora infrastructure (latest re

[VOTE] enroll Proton and Dispatch in Packit-as-a-Service CI offering from Fedora

2024-01-12 Thread Jiri Daněk
arketplace/packit-as-a-service * Fedora wiki page: https://fedoraproject.org/wiki/Packit Thank you, -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid protonj2 1.0.0-M19 (RC1)

2024-01-09 Thread Jiri Daněk
+1 * Used the staged maven repo to build https://github.com/rh-messaging/cli-java/tree/main/cli-protonj2 and run its self-tests on adopt-openj9 11 -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: install python-qpid-proton-0.39.0.tar.gz on linux RHEL8

2024-01-03 Thread Jiri Daněk
in _setup_isolation > self.req.build_env.install_requirements( > File "/usr/lib/python3.8/site-packages/pip/_internal/build_env.py", line > 201, in install_requirements > call_subprocess(args, spinner=spinner) > File > "/usr/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py", line > 242, in call_subprocess > raise InstallationError(exc_msg) > pip._internal.exceptions.InstallationError: Command errored out with exit > status 1: /usr/bin/python3 /usr/lib/python3.8/site-packages/pip install > --ignore-installed --no-user --prefix /tmp/pip-build-env-joipssag/overlay > --no-warn-script-location -v --no-binary :none: --only-binary :none: > --no-index -- setuptools 'cffi>=1.0.0' Check the logs for full command > output. > -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: POSIX threads

2023-06-29 Thread Jiri Daněk
ght something, maybe. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid JMS 1.10.0

2023-06-28 Thread Jiri Daněk
+1 * Added staged maven repo to https://github.com/rh-messaging/cli-java, upgraded qpid-jms version and ran tests on openjdk 11, which passed -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid JMS 2.4.0

2023-06-28 Thread Jiri Daněk
+1 * Added staged maven repo to https://github.com/rh-messaging/cli-java, upgraded qpid-jms version and ran tests on openjdk 11, which passed -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid protonj2 1.0.0-M16

2023-06-28 Thread Jiri Daněk
+1 * Added staged maven repo to https://github.com/rh-messaging/cli-java, upgraded protonj2 version and ran tests on openjdk 11, which passed -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Linker error

2023-06-09 Thread Jiri Daněk
e anything has actually changed. > It can't hurt, I guess. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid protonj2 1.0.0-M15

2023-05-03 Thread Jiri Daněk
pository to build https://github.com/rh-messaging/cli-java on Ubuntu Jammy with OpenJDK 11 * ran cli-java tests with Artemis broker -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Example Schema for qpid-proton connect.json

2023-04-20 Thread Jiri Daněk
e separated list of enabled SASL > mechanisms." > } >} > }, > "tls_properties": { >"type": "object", >"required": [ "ca", "cert", "key", "verify" ], > from reading the markdown I'd think these are optional too, but I guess when I already have tls{} then in practice I have to provide all properties >"ca": { > "type": "string" >}, >"cert": { > "type": "string" >}, >"key": { > "type": "string" >}, > all these fields can be, according to the markdown doc, also "null", so doing "type": ["string", "null"] seems appropriate >"verify": { > "type": "boolean" >} > } > } > } > > ## Appendix -2 file: broken.json > > { > "scheme": "http", > "host": "example.com", > "heartbeat": "", > "user": "foo", > "password": "bar" > } There is a documented requirement that when "scheme" is "amqp", then the "tls" must not be present. This suggests to me adding "$comment": "not-required means forbidden in JSON Schema speak", "if": { "properties": { "scheme": { "const": "amqp" } } }, "then": { "not": { "required": [ "tls" ] } } This way we will at least use some schema-7 features. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [EXTERNAL]Re: Installing qpid-cpp on RHEL9 with python3 fails

2023-04-19 Thread Jiri Daněk
lib/python3.9/site-packages/setuptools/sandbox.py", line 152, > in save_modules > yield saved > File "/usr/lib/python3.9/site-packages/setuptools/sandbox.py", line 193, > in setup_context > yield > File "/usr/lib/python3.9/site-packages/setuptools/sandbox.py", line 254, > in run_setup > _execfile(setup_script, ns) > File "/usr/lib/python3.9/site-packages/setuptools/sandbox.py", line 42, > in _execfile > code = compile(script, filename, 'exec') > File "/tmp/easy_install-svgwqopo/qpid-python-1.36.0-1/setup.py", line 42 > raise DistutilsFileError, \ > ^ > SyntaxError: invalid syntax > Yeah, this, it is unexpected that `make install` proceeds after this has happened. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [EXTERNAL]Re: Installing qpid-cpp on RHEL9 with python3 fails

2023-04-15 Thread Jiri Daněk
python2 is available Does this help you move forward? What is the next issue that you are hitting? -- Mit freundlichen Grüßen / Kind regards Jiri Daněk - To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org For additional commands, e-mail: users-h...@qpid.apache.org

Re: [EXTERNAL]Re: Installing qpid-cpp on RHEL9 with python3 fails

2023-04-13 Thread Jiri Daněk
d to, that are hard to get from the alternatives? -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [EXTERNAL]Re: Installing qpid-cpp on RHEL9 with python3 fails

2023-04-12 Thread Jiri Daněk
ce the test code there does not have nested modules and weird * imports, this problem does not actually visibly manifest there. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid ProtonJ2 1.0.0-M14

2023-04-11 Thread Jiri Daněk
itory to build https://github.com/rh-messaging/cli-java on Fedora 38 with OpenJDK 11 * run cli-java tests -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Which message was accepted?

2023-03-18 Thread Jiri Daněk
s://qpid.apache.org/releases/qpid-proton-0.34.0/proton/python/docs/proton.html#proton.Delivery.tag -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

How to do peer-to-peer (opening listening socket) with protonj2 and proton-dotnet clients?

2022-10-31 Thread Jiri Daněk
socket? I don't have any real usecase for this, so I'm just asking, since this seems closely related. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid ProtonJ2 1.0.0-M10

2022-10-28 Thread Jiri Daněk
aging repo to build https://github.com/rh-messaging/cli-java :cli-protonj2 and ran tests against Artemis broker on ubi8 in podman. No failures; fixes for PROTON-2616 and PROTON-2618 did work for me. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid proton-dotnet 1.0.0-M5

2022-10-26 Thread Jiri Daněk
a in the sources directory, no tests failed -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

[protonj2] How do I force the library to send Detach frame on the wire?

2022-10-10 Thread Jiri Daněk
meUnit.SECOND); // add this receive call receiver.close(); return 0; } but that does something different than the Qpid JMS example (it sends flow and actually would receive messages, if there was any). When I tried tryReceive instead of receive, the AMQP trace stayed the same as it was originally, that is, no Begin/Attach/Detach was produced either. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [protonj2] How do I ensure that all send()'t messages have been accepted by the other side?

2022-10-06 Thread Jiri Daněk
On Thu, Oct 6, 2022, 19:07 Timothy Bish wrote: > On 10/6/22 12:19, Jiri Daněk wrote: > > On Thu, Oct 6, 2022 at 5:19 PM Timothy Bish wrote: > [...] > Sounds like the right strategy for me (at least, to solve my immediate > > problem) is > > > >

Re: [protonj2] How do I ensure that all send()'t messages have been accepted by the other side?

2022-10-06 Thread Jiri Daněk
On Thu, Oct 6, 2022 at 5:19 PM Timothy Bish wrote: > On 10/6/22 10:36, Jiri Daněk wrote: > > In my code [1], I create a sender using connection.createSender(), that > is, > > I don't use Session at all. The Artemis broker on the other side is > > configured to B

[protonj2] How do I ensure that all send()'t messages have been accepted by the other side?

2022-10-06 Thread Jiri Daněk
2/src/main/java/com/redhat/mqe/CliProtonJ2Sender.java#L263 -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid ProtonJ2 1.0.0-M9

2022-09-27 Thread Jiri Daněk
ient > 1.0.0-M9 > > > -- > Tim Bish > +1 - used the staged maven repo to build cli-java [1] and run its tests [1] https://github.com/rh-messaging/cli-java -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid proton-dotnet 1.0.0-M4

2022-09-27 Thread Jiri Daněk
odman-test on Fedora 36, nothing failed -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid protonJ2 1.0.0-M8

2022-08-29 Thread Jiri Daněk
- > To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org > For additional commands, e-mail: users-h...@qpid.apache.org > > -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid proton-dotnet 1.0.0-M3

2022-08-09 Thread Jiri Daněk
iled. - Ran the source build and tests on Centos Stream 8 with dotnet 6.0.100-rc.2.21503.1 using "./build.sh test", no tests failed. - Ran the source build and tests in a container using "./build.sh podman-test", no tests failed. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid proton-dotnet 1.0.0-M1 (RC1)

2022-06-09 Thread Jiri Daněk
+1, provided that https://issues.apache.org/jira/browse/PROTON-2560 gets release-noted * Validated source archive checksum * Built from source on Fedora 36 * Ran several examples (after applying workaround for PROTON-2560) -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid proton-dotnet 1.0.0-M1 (RC1)

2022-05-30 Thread Jiri Daněk
d any compatible framework version The framework 'Microsoft.NETCore.App', version '5.0.0' (x64) was not found. - The following frameworks were found: 6.0.4 at [/usr/lib64/dotnet/shared/Microsoft.NETCore.App] You can resolve the problem by installing the specified framework and/or SDK. The specified framework can be found at: - https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=5.0.0&arch=x64&rid=fedora.36-x64 Process finished with exit code 150. ``` It should be that roll-forward policy thing, afaik. Meanwhile, I just did search/replace for net5.0 to net6.0. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid JMS 1.6.0

2022-03-30 Thread Jiri Daněk
for the client itself would then be: > > > org.apache.qpid > qpid-jms-client > 1.6.0 > > > - > To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org > For additional commands, e-mail: users-h...@qpid.apache.org > > -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid Proton 0.37.0 (RC2)

2022-03-18 Thread Jiri Daněk
look anything like the former problems with the test? https://issues.apache.org/jira/issues/?jql=project%20%3D%20PROTON%20AND%20text%20~%20c-fdlimits-tests What are the other failures? Could it be that newer Python is more sensitive to detecting resource leaks? -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid Proton 0.37.0

2022-03-02 Thread Jiri Daněk
t an issue, though. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid ProtonJ2 1.0.0-M4

2021-12-22 Thread Jiri Daněk
d checksums * built successfully from source code with running all tests * ran successfully "HelloWorld" example against Apache ActiveMQ Artemis 2.19.0 -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Issue building Qpid Proton 0.35 using source code package

2021-09-13 Thread Jiri Daněk
I had a similar-looking problem, and in my case it was caused by the fact that my Cyrus SASL was compiled with a different version of OpenSSL than was the version I tried to use when later compiling Qpid Proton. You can try running `ldd` against the Cyrus SASL .so files to see what OpenSsl they wa

Re: Random "local-idle-timeout expired" disconnections with Qpid Proton C++

2021-09-02 Thread Jiri Daněk
PROTON-2411). Too bad that the issue cannot be reproduced quickly and reliably; that would make this sort of debugging approach much more practical. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [Dispatch] what's the purpose of `type_registered` flag in router_node.c

2021-07-17 Thread Jiri Daněk
; so I'm not sure we really need 'type_registered'. That code has been there > from the very beginning so I don't think it was added to fix a particular > problem. I think it could safely be removed. > > -Ted > > On Fri, Jul 16, 2021 at 5:56 AM Jiri Daněk wrote:

[Dispatch] what's the purpose of `type_registered` flag in router_node.c

2021-07-16 Thread Jiri Daněk
ned). It seems to me that it should be perfectly ok to have multiple dispatch instances in the single process, as long as there is only one at a time. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [Qpid-dispatch] timespec not defined on Windows

2021-07-14 Thread Jiri Daněk
f the code which are > incompatible. > > > > > > Another thing which has come up is implicit conversion of int types. > MSVC > > > 2013 throws a lot of warnings related to implicit conversions between > types > > > (unsigned int, size_t, pointer math). A lot of these errors are > probably fixed > > > by changing types to size_t. > > > > > > Are there any places in the code where we should watch for the > > > performance impact of these changes? Specifically some places such as > > > qd_composite_t use uin32_t explicitly. > > > > The explicit uint32_t vales in qd_composite_t are matched to 32-bit > > length and count fields defined in the AMQP specification. We should > > take these instances on one-by-one. I'd be happy to help with this. I > > do have access to the MSVC environment. > > > > > > > > A > > > > > > - > > > To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org > > > For additional commands, e-mail: users-h...@qpid.apache.org > > > > > > > - > > To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org > > For additional commands, e-mail: users-h...@qpid.apache.org > > > -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Proposal for Python type annotations in Qpid Proton and Qpid Dispatch

2021-07-09 Thread Jiri Daněk
... @overload def _check_type(s: _T, allow_ulong: bool = ..., raise_on_error: Literal[False] = ...) -> _T: -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Proposal for Python type annotations in Qpid Proton and Qpid Dispatch

2021-07-02 Thread Jiri Daněk
I'd like to attempt to make MyPy check pass in --strict mode. Having typechecking in place should be helpful for PROTON-2095 Move away from SWIG to CFFI, in order to exactly preserve the API. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Bad random number seed for link names

2021-06-10 Thread Jiri Daněk
> > To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org > > For additional commands, e-mail: users-h...@qpid.apache.org > > > > - > To unsubscribe, e-mail: users-unsubscr...@qpid.apache.org > For additional commands, e-mail: users-h...@qpid.apache.org > > -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid ProtonJ2 1.0.0-M1 (RC1)

2021-05-10 Thread Jiri Daněk
Doing this, I noticed the following - bin release archive does not have any README files for the examples, so I had to download and look into the src archive for instructions -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [jira] [Commented] (PROTON-2370) [cpp] An accessor for the delivery tag

2021-04-11 Thread Jiri Daněk
nal. The text color does not matter. I'm going to comment on the PR directly, just because I can 'P BTW, thanks for posting the PR, it helps with debugging. I can simply pull your code in its entirety and play with it... -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-08 Thread Jiri Daněk
tire ~/Desktop/qpid-proton, and do the git checkout, etc. again? One way to possibly break the build would be to rename the build directory after you've already run cmake in it... something like this. That's why I think a clean start should always be tried, at some point. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-08 Thread Jiri Daněk
ty much nothing, only that you are on branch main and that there is untracked directory build, pretty much. It should not say that any tracked files are deleted, or so on -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-07 Thread Jiri Daněk
ariff wrote: > no it is executing > > > On Wed, Apr 7, 2021 at 9:36 PM Jiri Daněk wrote: > > > On Wed, Apr 7, 2021 at 6:01 PM mehaboob shariff > > wrote: > > > > > I built it as given in the INSTALL.md file which seems to be > > out-of-sour

Re: outreachy applicant

2021-04-07 Thread Jiri Daněk
en / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-07 Thread Jiri Daněk
; cd qpid-proton; cmake .; make) or out of source (git clone ...; cd qpid-proton; mkdir build; cd build; cmake ...; make)? -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-07 Thread Jiri Daněk
ntainer_test > > ls: cannot access > > '/home/mrrobot/Desktop/qpid-proton/buid/cpp/container_test': No such file > > or directory > > > > but container_test is there in /qpid-proton/cpp/src > So, is it 'buid' or 'build'? :P -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-07 Thread Jiri Daněk
but when I running it again Im getting this issue > > On Wed, Apr 7, 2021 at 7:10 PM Jiri Daněk wrote: > > > > > > > 18: FileNotFoundError: [Errno 2] No such file or directory: > > > '/home/mrrobot/Desktop/qpid-proton/build/cpp/container_test' > &g

Re: outreachy applicant

2021-04-07 Thread Jiri Daněk
make targets (make help, I think), is there something named container_test? Is it possible you somehow disabled building of the test program (it can be done)? ... -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-07 Thread Jiri Daněk
sked for? > > [image: image.png] > > On Wed, Apr 7, 2021 at 6:37 PM Jiri Daněk wrote: > >> On Wed, Apr 7, 2021 at 2:11 PM mehaboob shariff >> wrote: >> >> > Im getting these errors again >> > 18: Test timeout computed to be: 1500 >> > 18: Trace

Re: outreachy applicant

2021-04-07 Thread Jiri Daněk
s, then try searching for it (find), or run the build (make) again in case you did not build the file before. I hope that helps, and if not, please provide the requested information from the end of exception I asked for. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Doubts regarding setting up development environment

2021-04-03 Thread Jiri Daněk
tps://docs.microsoft.com/en-us/cpp/build/cmake-projects-in-visual-studio?view=msvc-160 -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Doubts regarding setting up development environment

2021-04-03 Thread Jiri Daněk
On Sat, Apr 3, 2021, 04:36 Srijan wrote: > Hello everyone. > I followed the steps written in INSTALL.MD file but the terminal kept > giving > me cmake error. > The picture I see is tiny and I can't read the error message. Please copy-

Re: Test mail

2021-04-02 Thread Jiri Daněk
Hey Srijan, are you here from Outreachy, too? If that's so, welcome. It's great to see you here! To get things started, do you have a working dev environment, where you can build the Proton C code and run the tests? https://github.com/apache/qpid-proton/blob/main/INSTALL.md There's also recentl

Re: outreachy applicant

2021-04-01 Thread Jiri Daněk
g to run a binary called "broker" as a subprocess. That "broker" binary is not found. So, why is it missing? Was it built? Try running `find . -name 'broker'` if it's somewhere under build/ -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-01 Thread Jiri Daněk
e > inconvenience No inconvenience on my side, Proton works for me ;P -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: outreachy applicant

2021-04-01 Thread Jiri Daněk
On Thu, Apr 1, 2021 at 12:05 PM Kajal Sah wrote: > Thanks, mehaboob. I was indeed missing JsonCpp but installing that didn't > help either. Apart from that, I think I have all the libraries and packages > installed. Somehow, I think getting error log of the failing tests will > help me debug bett

Re: outreachy applicant

2021-03-31 Thread Jiri Daněk
On Thu, Apr 1, 2021, 03:16 Kajal Sah wrote: > Hi, > > I am also getting errors when I try to test the coverage. I followed both > the steps mentioned above by Rakhi and Justin. I have lcov installed > already. > > Some information: Most of the test in make test fails (only 7% passes, i.e. > 42 ou

Re: outreachy applicant

2021-03-31 Thread Jiri Daněk
One helpful strategy. If in doubt how to build, look how the CI does it. These commands run for every commit in CI, so it is likely they will work and will be up to date. C stands for Continuous, after all. What you find may be needlessly complicated (you will see below), but that's what works on

Re: Autopep8 for DISPATCH-1814

2021-03-12 Thread Jiri Daněk
On Fri, Nov 6, 2020 at 3:15 PM Ken Giusti wrote: > On Fri, Nov 6, 2020 at 5:40 AM Robbie Gemmell > wrote: > > > On Thu, 5 Nov 2020 at 15:32, Jiri Daněk wrote: > > > > > > Hello folks, > > > > > > (https://issues.apache.org/jira/browse/DI

[Discuss] What's the status of -DSYSINSTALL_BINDINGS option in Qpid Proton (and other bindings?)

2021-01-31 Thread Jiri Daněk
unpacked Proton Python build during ctest testing in development, not on the wheel. I did not find any notice or mention whatsoever that -DSYSINSTALL_BINDINGS is deprecated. Can anyone please clarify? -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Is there any Qpid Dispatch Router windows version?

2021-01-29 Thread Jiri Daněk
Visual Studio supports multiple compilers! Besides MSVC it is also possible to use Clang, and supposedly GCC with Visual Studio 2019 [1]. This is good, because it somewhat reduces the number of incompatible things that would have to be fixed to compile Dispatch on Windows. I just spent some time t

Re: How to supply a patch for qpid-proton examples

2021-01-22 Thread Jiri Daněk
On Fri, Jan 22, 2021 at 8:47 AM Thomas Kettenbach wrote: > As i am new to this, i'd like to understand how i could provide a patch for > this? I would not like to open an issue via jira, as it is really just a > minor issue. So far, i understand that the examples are just to demonstrate > the usa

Re: Is there any Qpid Dispatch Router windows version?

2021-01-05 Thread Jiri Daněk
On Tue, Jan 5, 2021, 10:32 Gordon Sim wrote: > On 04/01/2021 09:34, Jiri Daněk wrote: > > Hi, a long time ago, i saw Dispatch running in Windows Subsystem for > Linux. > > That could be a practical option. The rest of this email is more or less > > far fetched speculation

Re: Is there any Qpid Dispatch Router windows version?

2021-01-04 Thread Jiri Daněk
Hi, a long time ago, i saw Dispatch running in Windows Subsystem for Linux. That could be a practical option. The rest of this email is more or less far fetched speculation from me. Another possibility would be Cygwin environment (which would provide POSIX Threads, and OpenSSL, and such) Finally,

Re: [NOTICE] Travis CI .org -> .com move, action required.

2020-12-02 Thread Jiri Daněk
, and either build Cyrus SASL myself, or just live without it {SASL itself is part of macOS, but it is deprecated, and the utility programs to manage the DB are missing). Link to the stuck Action, https://github.com/jiridanek/qpid-dispatch/runs/1473498467?check_suite_focus=true -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [NOTICE] Travis CI .org -> .com move, action required.

2020-11-24 Thread Jiri Daněk
round by purchasing what they > > call credits (1 minute of mac build time costs 50 credits). Do we want to > > do this? Or are we just going to drop the mac os builds? > > > > We would surely drop it from the Travis build in that case. > > GitHub Actions also has MacOS build nodes, so that build workflow > could be updated to use them if desired. > Dispatch ticket https://issues.apache.org/jira/browse/DISPATCH-1855 We'll probably want to make the same change in Proton as well. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Autopep8 for DISPATCH-1814

2020-11-05 Thread Jiri Daněk
going work in progress (although the autoformatter can be run on the PRs as well), so it seems to me that a good time to land this would be after a release. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [NOTICE] Jenkins CI server change, manual job migrations required

2020-07-24 Thread Jiri Daněk
tions? So far I've managed to completely ignore the Apache Jenkins, so I am wondering; am I missing something? Maybe some Cloudbees proprietary plugins? -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: qpid-cpp-server 1.36 for CentOS6/RHEL6

2020-05-30 Thread Jiri Daněk
1.el7.src.rpm` will install build dependencies for you. Qpid Proton is available in the el6 epel. Hopefully the package will just build, without any issues. I did not try it myself. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [VOTE] Release Apache Qpid Proton 0.31.0 (RC2)

2020-05-04 Thread Jiri Daněk
c -o build/temp.linux-armv7l-2.7/tmp/sasl_client_doneEcGiwW.o /tmp/sasl_client_doneEcGiwW.c:2:1: warning: return type defaults to ‘int’ [-Wimplicit-int] main (int argc, char **argv) { ^~~~ -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: golang/electron

2020-04-09 Thread Jiri Daněk
//qpid.apache.org/proton/ that prefils the Project in the issue form. Thank you for taking the time! -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [DISCUSS] Configure description, homepage, and labels (tags) for qpid repos on GitHub

2019-10-01 Thread Jiri Daněk
> I've created initial proposal for such file for qpid-proton > > https://github.com/apache/qpid-proton/pull/193 > > The proposed .asf.yaml says > Here's .asf.yaml for qpid-dispatch, https://github.com/apache/qpid-dispatch/pull/577. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

[DISCUSS] Configure description, homepage, and labels (tags) for qpid repos on GitHub

2019-09-28 Thread Jiri Daněk
sted in any feedback about the description and labels fields. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: [Proton-C] Discovery

2019-09-26 Thread Jiri Daněk
eded... > Hi, the PRs on https://issues.apache.org/jira/browse/PROTON-2040 were merged in time for 0.29 release. Does the way it is implemented there suit your needs? -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Welcome Jiri Danek as an Apache Qpid committer

2019-03-02 Thread Jiri Daněk
t freundlichen Grüßen / Kind regards Jiri Daněk

Re: [NOTICE / DISCUSS] migrating Git repositories to gitbox.apache.org

2018-12-15 Thread Jiri Daněk
doubt that the migration will include fixing all the jira comments for outdated links, though. Or introducing redirect from the old url. -- Mit freundlichen Grüßen / Kind regards Jiri Daněk

Re: Go Electron: Large Messages Fail To Send

2018-10-19 Thread Jiri Daněk
c > > library. > > > > My knowledge of AMQP and the qpidd internals isn't great so I'm unsure of > > why qpidd thinks it hasn't got the delivery so any help much appreciated. > I got a similar issue with ActiveMQ Artemis a while back. https://issues.jboss.org/browse/ENTMQCL-458 -- Mit freundlichen Grüßen / Kind regards Jiri Daněk