kimlage
kimlage
same here... any ideas? The problem here starts after 5 min records... I could save a 4 min one....
Same problem here...
I solved getting the source code and looking at the posted query string. It seams the problem is with the decimal format. When it sends the value with "," (coma)...
A more elegant solution is to change the culture info: CultureInfo ci = new CultureInfo("en-US"); Thread.CurrentThread.CurrentCulture = ci; Thread.CurrentThread.CurrentUICulture = ci;
what error are you getting? take a look at the issue #27. it might help... Your case can also be a minimum quantity problem, i usually check that on the...
I'm having this exact problem in but in Linux
I'm having the same thing trying load this: bash_tool = Tool( name="Bash", func=BashProcess().run, description="""A Bash shell. Use this to execute bash commands. Input should be a valid bash command. If...