@@ -850,11 +850,11 @@ async def {name}(
850850 elif procedure .type == "subscription" :
851851 match protocol_version :
852852 case "v1.1" :
853- assert input_meta , "rpc expects input to be required"
853+ assert input_meta , "subscription expects input to be required"
854854 _ , tpe , render_method = input_meta
855855 binding = "input"
856856 case "v2.0" :
857- assert init_meta , "rpc expects init to be required"
857+ assert init_meta , "subscription expects init to be required"
858858 _ , tpe , render_method = init_meta
859859 binding = "init"
860860 case other :
@@ -932,7 +932,7 @@ async def {name}(
932932 ]
933933 )
934934 elif protocol_version == "v1.1" :
935- assert input_meta , "Protocol v1 requires input to be defined"
935+ assert input_meta , "upload requires input to be defined"
936936 _ , input_type , render_input_method = input_meta
937937 current_chunks .extend (
938938 [
@@ -1009,7 +1009,7 @@ async def {name}(
10091009 ]
10101010 )
10111011 elif protocol_version == "v1.1" :
1012- assert input_meta , "Protocol v1 requires input to be defined"
1012+ assert input_meta , "stream requires input to be defined"
10131013 _ , input_type , render_input_method = input_meta
10141014 current_chunks .extend (
10151015 [
0 commit comments