Skip to content

Commit c66d62a

Browse files
dbyron0David Byron
andauthored
make environment variable strings public again (#132)
prior to #107 (released in version 2.10.0), they were public. Co-authored-by: David Byron <[email protected]>
1 parent ff9bd17 commit c66d62a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/com/timgroup/statsd/NonBlockingStatsDClient.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
*/
5555
public class NonBlockingStatsDClient implements StatsDClient {
5656

57-
static final String DD_DOGSTATSD_PORT_ENV_VAR = "DD_DOGSTATSD_PORT";
58-
static final String DD_AGENT_HOST_ENV_VAR = "DD_AGENT_HOST";
59-
static final String DD_ENTITY_ID_ENV_VAR = "DD_ENTITY_ID";
57+
public static final String DD_DOGSTATSD_PORT_ENV_VAR = "DD_DOGSTATSD_PORT";
58+
public static final String DD_AGENT_HOST_ENV_VAR = "DD_AGENT_HOST";
59+
public static final String DD_ENTITY_ID_ENV_VAR = "DD_ENTITY_ID";
6060
private static final String ENTITY_ID_TAG_NAME = "dd.internal.entity_id" ;
6161

6262
enum Literal {

0 commit comments

Comments
 (0)