File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
lib/trino-filesystem-gcs/src/main/java/io/trino/filesystem/gcs Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ record GcsLocation(Location location)
2828
2929 requireNonNull (location , "location" );
3030 checkArgument (location .scheme ().isPresent (), "No scheme for GCS location: %s" , location );
31- checkArgument (location .scheme ().get ().equals ("gs" ), "Wrong scheme for S3 location: %s" , location );
31+ checkArgument (location .scheme ().get ().equals ("gs" ), "Wrong scheme for GCS location: %s" , location );
3232 checkArgument (location .host ().isPresent (), "No bucket for GCS location: %s" , location );
3333 checkArgument (location .userInfo ().isEmpty (), "GCS location contains user info: %s" , location );
3434 checkArgument (location .port ().isEmpty (), "GCS location contains port: %s" , location );
You can’t perform that action at this time.
0 commit comments