hey i have a shared build service that records tas...
# community-support
a
hey i have a shared build service that records task times, to track build times overall in our project. currently i try to run a Future on the
close
method to send off analytic data to our own company systems. I seem to be running into a problem where the upload isnt quite happening. Im guessing gradle is closing up and stop running the future. Is there a better way to track this, while not slowing down build times i want it to happen async. I was thinking: • write to a file • spin up a task to send that file to the server in the background how do i do this correctly?
v
I don't think you should do it a async. Or the daemon could be shut down. Does that request need that much time to complete?
a
It’s a network call. Likely a couple seconds or less
I ended up making it blocking
👌 1