Hi, everyone.

public static MaterializationService instance() {
  MaterializationService materializationService = THREAD_INSTANCE.get();
  if (materializationService != null) {
    return materializationService;
  }
  return INSTANCE;
}

Shall we put the materialization outside this method, otherwise we'll
always get the threadlocal instance?

Reply via email to