This is an automated email from the ASF dual-hosted git repository.
gurwls223 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 3042ffd08fb [MINOR][CONNECT] Fix a typo in
org.apache.spark.sql.connect.client.ArtifactManager
3042ffd08fb is described below
commit 3042ffd08fbd3c3e81c6f7f2ed14448ad45292d0
Author: zhaomin <[email protected]>
AuthorDate: Thu Oct 19 14:10:11 2023 +0900
[MINOR][CONNECT] Fix a typo in
org.apache.spark.sql.connect.client.ArtifactManager
### What changes were proposed in this pull request?
Change 'Unsuppoted' in the exception information to 'Unsupported'
### Why are the changes needed?
this is a typo
### Does this PR introduce _any_ user-facing change?
No
### How was this patch tested?
pass ci
### Was this patch authored or co-authored using generative AI tooling?
No
Closes #43440 from zhaomin1423/typo.
Authored-by: zhaomin <[email protected]>
Signed-off-by: Hyukjin Kwon <[email protected]>
---
.../scala/org/apache/spark/sql/connect/client/ArtifactManager.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/connector/connect/common/src/main/scala/org/apache/spark/sql/connect/client/ArtifactManager.scala
b/connector/connect/common/src/main/scala/org/apache/spark/sql/connect/client/ArtifactManager.scala
index 6b08737ed21..2f8eacb0690 100644
---
a/connector/connect/common/src/main/scala/org/apache/spark/sql/connect/client/ArtifactManager.scala
+++
b/connector/connect/common/src/main/scala/org/apache/spark/sql/connect/client/ArtifactManager.scala
@@ -87,7 +87,7 @@ class ArtifactManager(
case cf if cf.endsWith(".class") =>
newClassArtifact(path.getFileName, new LocalFile(path))
case other =>
- throw new UnsupportedOperationException(s"Unsuppoted file format:
$other")
+ throw new UnsupportedOperationException(s"Unsupported file format:
$other")
}
Seq[Artifact](artifact)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]