mirror of
https://github.com/google/nomulus.git
synced 2025-07-24 11:38:35 +02:00
Fix incorrect field name in EppMetric
------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=132688882
This commit is contained in:
parent
cb55ab4f5f
commit
bd887e857e
2 changed files with 86 additions and 1 deletions
|
@ -123,7 +123,9 @@ public abstract class EppMetric implements BigQueryMetric {
|
|||
addOptional("clientId", getClientId(), map);
|
||||
addOptional("privilegeLevel", getPrivilegeLevel(), map);
|
||||
addOptional("eppTarget", getEppTarget(), map);
|
||||
addOptional("status", getStatus(), map);
|
||||
if (getStatus().isPresent()) {
|
||||
map.put("eppStatus", Integer.toString(getStatus().get().code));
|
||||
}
|
||||
|
||||
return map.build();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue