Apple throws error while checking notarization status

I am trying to notarize a Mac application installer file (.pkg).

During this process, pkg file gets uploaded to the notarization service successfully and following output is received from Apple:

"No errors uploading '/Users/ninad/Projects/My_App.pkg'.

RequestUUID = <Valid_Request_UUID_Value>"


Then, I use following command to check the status of notarization request:

xcrun altool --notarization-info <Valid_Request_UUID_Value> -u <Apple_Username> -p <Apple_App_Specific_Password>


But, I receive following error from Apple:

altool[1235:10999] *** Error: Apple Services operation failed. Could not find the RequestUUID


Please note that, this is working fine on another Mac system having following configuration:

macOS Mojave (10.14.5)

Xcode 11.1


Can anyone please suggest what could be the cause of issue.

Replies

What status value for you get back from

altool
? 239?

Note You get this from the shell using

$?
. For example:
$ printf "this works, so the status is zero\n" ; echo $?
this works
0
$ printf -x "this fails, so the status is non-zero\n" ; echo $?
-bash: printf: -x: invalid option
printf: usage: printf [-v var] format [arguments]
2

Share and Enjoy

Quinn “The Eskimo!”
Apple Developer Relations, Developer Technical Support, Core OS/Hardware

let myEmail = "eskimo" + "1" + "@apple.com"