lib/ldclient-rb/requestor.rb in launchdarkly-server-sdk-5.8.0 vs lib/ldclient-rb/requestor.rb in launchdarkly-server-sdk-5.8.1
- old
+ new
@@ -24,17 +24,9 @@
@config = config
@client = Util.new_http_client(@config.base_uri, @config)
@cache = @config.cache_store
end
- def request_flag(key)
- make_request("/sdk/latest-flags/" + key)
- end
-
- def request_segment(key)
- make_request("/sdk/latest-segments/" + key)
- end
-
def request_all_data()
make_request("/sdk/latest-all")
end
def stop