ansible / galaxy-issues

This repository exists solely for the tracking of user issues with Ansible Galaxy.
20 stars 3 forks source link

Failing to remove a travis integration with the ansible-galaxy cli #287

Closed BondAnthony closed 6 years ago

BondAnthony commented 6 years ago

While attempting to remove a travis integration with ansible-galaxy setup --remove <ID> command the client is receiving a malformed document from https://galaxy.ansible.com/api/v1/notification_secrets/<ID>/.

Should the ansible-galaxy --remove command send DELETE requests to the notification_secrets endpoint?

While searching the API docs it appears only Allow: GET, POST, HEAD, OPTIONS is accepted. Should the CLI be changed?

Error from the malformed document

                    <div id="galaxy-page-not-found">
                        <div class="title">
                            <span class="error-number">500</span> Server Error
                        </div>
                        <p class="text-message">
        An error occurred while loading the requested page. Please report this error at 
                            <a href="https://github.com/ansible/galaxy-issues" target="_blank">Galaxy Issues</a>.
                        </p>
                    </div>
                </div>

Confirmed GET, HEAD, OPTIONS all respond with a none 40x or 50x code. The POST verb receives a 405 Method Not Allowed.