diff options
author | Jose <jose@zeroc.com> | 2021-01-08 21:57:22 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2021-01-08 22:25:20 +0100 |
commit | bd818ac724a48111dd2eb89bb19c32e5b001866c (patch) | |
tree | e9ed84cf7a0c038d6b61861076eab55230c003a2 /csharp | |
parent | Rename global metadata to local metadata. (#1231) (diff) | |
download | ice-bd818ac724a48111dd2eb89bb19c32e5b001866c.tar.bz2 ice-bd818ac724a48111dd2eb89bb19c32e5b001866c.tar.xz ice-bd818ac724a48111dd2eb89bb19c32e5b001866c.zip |
Fix Bogus name for metrics Request Id field - Close #906
Diffstat (limited to 'csharp')
-rw-r--r-- | csharp/src/Ice/InstrumentationI.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp/src/Ice/InstrumentationI.cs b/csharp/src/Ice/InstrumentationI.cs index 1e9a9ae3059..d4c1683fd30 100644 --- a/csharp/src/Ice/InstrumentationI.cs +++ b/csharp/src/Ice/InstrumentationI.cs @@ -291,7 +291,7 @@ namespace IceInternal add("operation", cl.GetMethod("getCurrent"), clc.GetField("operation")); add("identity", cl.GetMethod("getIdentity")); add("facet", cl.GetMethod("getCurrent"), clc.GetField("facet")); - add("current", cl.GetMethod("getCurrent"), clc.GetField("requestId")); + add("requestId", cl.GetMethod("getCurrent"), clc.GetField("requestId")); add("mode", cl.GetMethod("getMode")); } catch(Exception) |