-
|
Hi, Unfortunately even with removing the "new" service or shorten the config file to only one service, which was running in the past, the message stays. Restarted the machine, no changes. Started Argus with:
and got: Then I started this document, did some screenshots and of course I need some time for this. Missing the last of the above messages, I repeated the "./argus -config.file config.yml" and did not get any errormessage as before and the service is now again starting without any problem. How does the problem overcome several reboots but will heal after writing in the discussion section in github. Is there any timer which has to expire? Regards |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 5 replies
-
|
Just restarted (without any Changes) the Service and are again Back to the Error as described above. |
Beta Was this translation helpful? Give feedback.
-
|
Could I ask what version you're using and maybe a bit of the config that's causing the fail? |
Beta Was this translation helpful? Give feedback.
-
|
Hi Joseph, The problem is, that I'm not able to get the Version info of the installed Version of Tandoor Recipes. This is the answer of the "openapi" call: And I need the 1.5.24 of course but I'm not shure how. Thought of: but did not get it to work. Will give it a try now. And thanks a lot for your fast, no, very fast reply and fix. Regards Peter |
Beta Was this translation helpful? Give feedback.
-
|
Hi Joseph, now I see the "Problem" in the journal: And a little reading with the Help of Google and in real paper:-) fixes the "unmashalling Error" which I get with `regex: version: (\d+) (without the quotes you described:-)) So I found two solutions, unfortunately I'm not really clear why they are both working, anyway will both work,
with both versions above, only gives back a "1" instead of "1.5.24". My regex book is telling the same as you did, but I could not get it to work. Regards and thanks for your Help |
Beta Was this translation helpful? Give feedback.
-
|
Hi Joseph, is the UI mentioned in the documentation? If so, I missed it. But with your help, I found it. Will give it a try. Anyway, thanks for the help and the hints. I learned something new and I think, I have to brushup my regex skills. Regards Peter |
Beta Was this translation helpful? Give feedback.
Oh yeah, that regex I sent was only matching the first number set,
'version: ([\d.]+)'was what I meant to put!The
\dis the same as[0-9], so my regex was just capturing the "1" in "1.5.24" and not matching on the.s. Your regex is probably what you want as it's stricter, forcing the version to be 3 sets of numbers -MAJOR.MINOR.PATCHregex: 'version: ([0-9]+\.[0-9]+\.[0-9]+)'- This has to be in quotes because otherwise, when reading the YAML, it thinks that you might have forgotten a newline between regex and version, e.g.So you need it in quotes to show that the value of the regex key is that whole string.
regex: version:.([0-9]+\.[0-9]+…