An error occurred while fetching the assigned milestone of the selected merge_request.
Apparently
kernel_function(**{**arrays, **kwargs})
does the same as
call_dict = {}
call_dict.update(arrays)
call_dict.update(kwargs)
kernel_function(**call_dict)
But
kernel_function(**arrays, **kwargs)
causes an error if a key is in arrays and kwargs.