Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

fix(dagreader): remove a buggy workaround for a gateway issue #80

Merged
merged 2 commits into from
Jan 6, 2020

Commits on Jan 4, 2020

  1. fix(dagreader): remove a buggy workaround for a gateway issue

    We had a hack that "pretended" seeking worked when it didn't as go's HTTP
    library uses seeks to determine the file size. However,
    
    1. I'm changing the gateway to actually rely on seeking working as specified.
    2. We don't even need this hack. The gateway performs two types of seeks (unless
       a range query is passed):
        1. It seeks to the beginning. We can always shortcut this.
        2. It seeks to the end. The gateway now has a special "lazy" seeker to avoid
          seeking until we actually try to _read_. Therefore, we don't need a hack
          for that either.
    Stebalien committed Jan 4, 2020
    Configuration menu
    Copy the full SHA
    47e4181 View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2020

  1. fix(io): make resetPosition actually reset everything

    Including the offset.
    Stebalien committed Jan 6, 2020
    Configuration menu
    Copy the full SHA
    d1f8577 View commit details
    Browse the repository at this point in the history