-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: scalar delete #43
Conversation
@@ -41,7 +42,7 @@ class DataClient implements AbstractDataClient { | |||
try { | |||
var resp = await _client.get(request, | |||
options: CallOptions(metadata: { | |||
'cacheName': cacheName, | |||
'cache': cacheName, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
header was misnamed
@@ -23,18 +28,45 @@ class CacheClient implements ICacheClient { | |||
CacheConfiguration configuration, Duration defaultTtl) | |||
: _dataClient = | |||
DataClient(credentialProvider, configuration, defaultTtl) { | |||
_logger.level = determineLoggerLevel(configuration.logLevel); | |||
// TODO: fix logging level issue |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is an issue captured in #36
c34f2e9
to
9f598d3
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
addresses #41