Minor bug fixes
diff --git a/command-line/src/main/java/org/apache/airavata/mft/command/line/sub/swift/SwiftAddSubCommand.java b/command-line/src/main/java/org/apache/airavata/mft/command/line/sub/swift/SwiftAddSubCommand.java
index ab81ecd..689ab6a 100644
--- a/command-line/src/main/java/org/apache/airavata/mft/command/line/sub/swift/SwiftAddSubCommand.java
+++ b/command-line/src/main/java/org/apache/airavata/mft/command/line/sub/swift/SwiftAddSubCommand.java
@@ -38,7 +38,7 @@
     @CommandLine.Option(names = {"-p", "--password"}, description = "Password (Password Credentials")
     private String password;
 
-    @CommandLine.Option(names = {"-p", "--projectId"}, description = "Project Id (Password Credentials")
+    @CommandLine.Option(names = {"-pid", "--projectId"}, description = "Project Id (Password Credentials")
     private String projectId;
 
     @CommandLine.Option(names = {"-d", "--domainId"}, description = "Domain Id (Password Credentials")
diff --git a/services/resource-service/server/src/main/java/org/apache/airavata/mft/resource/server/handler/GenericResourceServiceHandler.java b/services/resource-service/server/src/main/java/org/apache/airavata/mft/resource/server/handler/GenericResourceServiceHandler.java
index e8906cf..518d899 100644
--- a/services/resource-service/server/src/main/java/org/apache/airavata/mft/resource/server/handler/GenericResourceServiceHandler.java
+++ b/services/resource-service/server/src/main/java/org/apache/airavata/mft/resource/server/handler/GenericResourceServiceHandler.java
@@ -26,7 +26,7 @@
                 responseObserver.onCompleted();
             }, () -> {
                 responseObserver.onError(Status.INTERNAL
-                        .withDescription("No GCS Resource with id " + request.getResourceId())
+                        .withDescription("No Resource with id " + request.getResourceId())
                         .asRuntimeException());
             });
         } catch (Exception e) {