DRILL-8349: GoogleSheets Not Registering Schemas with Non Default Name (#2695)

diff --git a/contrib/storage-googlesheets/src/main/java/org/apache/drill/exec/store/googlesheets/schema/GoogleSheetsSchemaFactory.java b/contrib/storage-googlesheets/src/main/java/org/apache/drill/exec/store/googlesheets/schema/GoogleSheetsSchemaFactory.java
index bf4450e..99221fd 100644
--- a/contrib/storage-googlesheets/src/main/java/org/apache/drill/exec/store/googlesheets/schema/GoogleSheetsSchemaFactory.java
+++ b/contrib/storage-googlesheets/src/main/java/org/apache/drill/exec/store/googlesheets/schema/GoogleSheetsSchemaFactory.java
@@ -22,13 +22,12 @@
 import org.apache.drill.exec.store.AbstractSchemaFactory;
 import org.apache.drill.exec.store.SchemaConfig;
 import org.apache.drill.exec.store.googlesheets.GoogleSheetsStoragePlugin;
-import org.apache.drill.exec.store.googlesheets.GoogleSheetsStoragePluginConfig;
 
 public class GoogleSheetsSchemaFactory extends AbstractSchemaFactory {
   private final GoogleSheetsStoragePlugin plugin;
 
   public GoogleSheetsSchemaFactory(GoogleSheetsStoragePlugin plugin) {
-    super(GoogleSheetsStoragePluginConfig.NAME);
+    super(plugin.getName());
     this.plugin = plugin;
   }