Assigned
Status Update
Comments
gs...@google.com <gs...@google.com> #2
Engineering has been made aware of your feature request, and will address it in due course. No estimated time to implementation has been set. Meanwhile, you may follow developments in this thread.
ce...@managemybudget.net <ce...@managemybudget.net> #3
it works when changing l185 of google_appengine/google/appengine/tools/devappserver2/metrics.py from:
self._cmd_args = json.dumps(vars(cmd_args)) if cmd_args else None
to:
self._cmd_args = json.dumps({k: str(v) for k, v in vars(cmd_args).items()}) if cmd_args else None
but I'm not sure, is that what you want to do.
self._cmd_args = json.dumps(vars(cmd_args)) if cmd_args else None
to:
self._cmd_args = json.dumps({k: str(v) for k, v in vars(cmd_args).items()}) if cmd_args else None
but I'm not sure, is that what you want to do.
er...@gmail.com <er...@gmail.com> #4
I just the option to work, never mind the way the code change to
On Thu, 20 Dec 2018 at 16:55 <buganizer-system@google.com> wrote:
On Thu, 20 Dec 2018 at 16:55 <buganizer-system@google.com> wrote:
er...@gmail.com <er...@gmail.com> #5
Updated patch 1.9.86
Description
patched attached, hope you find it useful.