markusthoemmes opened a new pull request #3362: Make ActivationId implementation leaner. URL: https://github.com/apache/incubator-openwhisk/pull/3362 ActivationId is today essentially a wrapper around `UUID`. This is not necessary though. Subsequent operations (serdes for instance) are unnecessarily costly because we keep the UUID around and `toString` + "clean" it each time. We only need UUID semantics at creation time though. After that, we can happily continue to only process the cleaned `String` representation of the UUID since we don't care about it's semantics anymore. - Cleans up the whole interface - Introduce clearer naming of methods - Get's rid of `ActivationIdGenerator` (usage is not really checked anymore anyway)
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
