Skip to content

Could not list files in the okw container...but our authentication needs to be redone... #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
RobertLRead opened this issue May 7, 2025 · 0 comments
Assignees

Comments

@RobertLRead
Copy link
Collaborator

After writing some debugging code in the backend, it is clear that we have a configuration problem in our blob containers. We can list the file in the "okh" blob container, but not the "okw". We even created an "okz" to test this. I worked on this for 3 hours; I can find no configuration difference.

I suspect that this is realiity to the complexity of our security/authentication model, which requires us to login with the azure cli. I suggest that we shift to a key-based athentication that is used by the GOSQAS team, which has had no problem with this.

@Jbutler-helpful wanted me to assign this the @devhawk ; but generally I think we should just completely redo our authentication system. I would love to have someone do this, but I think @devhawk is the only logical sorce, except for me. I'm assigning to @Jbutler-helpful for now.

 console.log("list Summaries", serviceName, containerName);

    {
        const { error, errorMessage, data } = await listFilesInContainer(
            serviceName,
            "okz"
        );
        console.log("Returning OKH Summaries",data);
        if (error) {
            return { jsonBody: error };
        }
        console.log("dataReturned", data);
    }
    console.log("ZZZ About to call listFilesInContainer ");

    const { error, errorMessage, data } = await listFilesInContainer(
        serviceName,
        "okh"
    );
    console.log("ZZZZZZZZZZZZZZZ",error);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants