AbstractGoogleClient - Имя приложения не установлено.Построитель вызовов # setApplicationName - PullRequest
0 голосов
/ 22 ноября 2018

Как мне задать имя приложения GCP?

2018-Nov-22 11:18:18.283 WARN  [http-nio-8080-exec-9] 
c.g.a.c.g.s.AbstractGoogleClient - Application name is not set. 
Call 
Builder#setApplicationName.

У меня в классе есть следующий конструктор.

private final GoogleCredential googleCredential;
private final String projectId;
private final String zone;
private final String region;

private GcpClient(GcpAccountSettings settings) throws 
  GcpClientException {
    try {
        this.googleCredential = 
  getCredential(settings.getClientEmail(), 
  settings.getPrivateKey());
    } catch (GeneralSecurityException | IOException e) {
        throw new GcpClientException(e);
    }

    this.projectId = settings.getProjectId();
    this.zone = settings.getZone();
    this.region = settings.getRegions();
}

Я очень надеюсь на вашу помощь.

1 Ответ

0 голосов
/ 22 ноября 2018

Мы можем установить имя приложения следующим образом.

 Compute compute =
            new Compute.Builder(googleCredential.getTransport(), 
 googleCredential.getJsonFactory(), googleCredential)
                    .setApplicationName(projectId).build();

, если вам нужно больше подробностей, пожалуйста, следуйте ниже по ссылке как установить имя приложения

...