Skip to content

Commit

Permalink
fix(atlas): use https for atlas endpoints (#845)
Browse files Browse the repository at this point in the history
  • Loading branch information
anotherchrisberry authored May 19, 2021
1 parent c41da20 commit 334d92e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
@Slf4j
public class AtlasMetricsService implements MetricsService {

public final String URI_SCHEME = "http";
public final String URI_SCHEME = "https";

public final int MAX_RETRIES = 10; // maximum number of times we'll retry an Atlas query
public final long RETRY_BACKOFF = 1000; // time between retries in millis
Expand Down

0 comments on commit 334d92e

Please sign in to comment.