Retrieve posts using thumbnail id as meta key

Try setting an array for meta_query instead, I do not think using just a string for it is the intended usage, but this may work instead in your case:

'meta_query' => array(
    array(
        'key'     => '_thumbnail_id',
        'compare' => 'EXISTS'
    )
)