Skip to content

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

Open
@RobertLRead

Description

@RobertLRead

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);

Metadata

Metadata

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions