grundprinzip commented on code in PR #82:
URL: https://github.com/apache/spark-connect-go/pull/82#discussion_r1815588096
##########
spark/client/conf.go:
##########
@@ -0,0 +1,122 @@
+package client
+
+import (
+ "context"
+
+ proto "github.com/apache/spark-connect-go/v35/internal/generated"
+ "github.com/apache/spark-connect-go/v35/spark/client/base"
+)
+
+// Public interface RuntimeConfig
+type RuntimeConfig interface {
+ GetAll(ctx context.Context) (map[string]string, error)
+ Set(ctx context.Context, key string, value string) error
+ Get(ctx context.Context, key string) (map[string]string, error)
Review Comment:
This should return a single value not a map
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]